]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:pencil2: Fix typos in docs (#734)
authorbundabrg <brendan@grieve.com.au>
Wed, 27 Nov 2019 20:27:56 +0000 (04:27 +0800)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 27 Nov 2019 20:27:56 +0000 (21:27 +0100)
docs/tutorial/async-sql-databases.md
docs/tutorial/dependencies/classes-as-dependencies.md

index 4da64044078202360352ad3a46fbd37c9201a8ad..5f75bce7da62682ab66e5391864e3fdf53404cc3 100644 (file)
@@ -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
 
index 44635ed0b33ddd71355dcd961e02b994079c2413..3f872186bc412bbf3e85c4e792954a7415be8454 100644 (file)
@@ -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!}