From d9a9d9ba393cf6f38a9111c04991ec47a11dd080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Sun, 27 Oct 2019 16:40:22 +0100 Subject: [PATCH] Fix lines highlights in MongoDB doc --- docs/configuration/databases/mongodb.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration/databases/mongodb.md b/docs/configuration/databases/mongodb.md index a57b5787..6ead4fe8 100644 --- a/docs/configuration/databases/mongodb.md +++ b/docs/configuration/databases/mongodb.md @@ -6,7 +6,7 @@ Let's create a MongoDB connection and instantiate a collection. -```py hl_lines="6 7 8 9" +```py hl_lines="5 6 7 8" {!./src/db_mongodb.py!} ``` @@ -16,7 +16,7 @@ You can choose any name for the database and the collection. The database adapter of **FastAPI Users** makes the link between your database configuration and the users logic. Create it like this. -```py hl_lines="15" +```py hl_lines="14" {!./src/db_mongodb.py!} ```