From 11656f7bd5227adf9ce92e24cacaaa573806a295 Mon Sep 17 00:00:00 2001 From: Facundo Maero Date: Sat, 29 Aug 2020 09:30:23 -0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typo=20in=20nosql-databases.m?= =?UTF-8?q?d=20(#1980)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Facundo Maero --- docs/en/docs/advanced/nosql-databases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/advanced/nosql-databases.md b/docs/en/docs/advanced/nosql-databases.md index 9d8c95086..acbd61313 100644 --- a/docs/en/docs/advanced/nosql-databases.md +++ b/docs/en/docs/advanced/nosql-databases.md @@ -143,7 +143,7 @@ UserInDB(username="johndoe", hashed_password="some_hash") As our code is calling Couchbase and we are not using the experimental Python await support, we should declare our function with normal `def` instead of `async def`. -Also, Couchbase recommends not using a single `Bucket` object in multiple "threads", so, we can get just get the bucket directly and pass it to our utility functions: +Also, Couchbase recommends not using a single `Bucket` object in multiple "threads", so, we can just get the bucket directly and pass it to our utility functions: ```Python hl_lines="49 50 51 52 53" {!../../../docs_src/nosql_databases/tutorial001.py!}