From: bundabrg Date: Wed, 27 Nov 2019 20:27:56 +0000 (+0800) Subject: :pencil2: Fix typos in docs (#734) X-Git-Tag: 0.44.0~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=28c089c0297a78539ad4ce69ecb28ae45377ce20;p=thirdparty%2Ffastapi%2Ffastapi.git :pencil2: Fix typos in docs (#734) --- diff --git a/docs/tutorial/async-sql-databases.md b/docs/tutorial/async-sql-databases.md index 4da6404407..5f75bce7da 100644 --- a/docs/tutorial/async-sql-databases.md +++ b/docs/tutorial/async-sql-databases.md @@ -41,7 +41,7 @@ Later, for your production application, you might want to use a database server ``` !!! tip - If you where connecting to a different database (e.g. PostgreSQL), you would need to change the `DATABASE_URL`. + If you were connecting to a different database (e.g. PostgreSQL), you would need to change the `DATABASE_URL`. ## Create the tables diff --git a/docs/tutorial/dependencies/classes-as-dependencies.md b/docs/tutorial/dependencies/classes-as-dependencies.md index 44635ed0b3..3f872186bc 100644 --- a/docs/tutorial/dependencies/classes-as-dependencies.md +++ b/docs/tutorial/dependencies/classes-as-dependencies.md @@ -2,7 +2,7 @@ Before diving deeper into the **Dependency Injection** system, let's upgrade the ## A `dict` from the previous example -In the previous example, we where returning a `dict` from our dependency ("dependable"): +In the previous example, we are returning a `dict` from our dependency ("dependable"): ```Python hl_lines="7" {!./src/dependencies/tutorial001.py!}