From 866af5bca6bf2edef69dad8ea7d58c47485bc5ce Mon Sep 17 00:00:00 2001 From: Christopher Dignam Date: Sat, 27 Apr 2019 09:05:06 -0400 Subject: [PATCH] :pencil2: Fix typos in docs, from forms (#176) --- docs/tutorial/bigger-applications.md | 2 +- docs/tutorial/cors.md | 2 +- docs/tutorial/debugging.md | 2 +- docs/tutorial/sql-databases.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorial/bigger-applications.md b/docs/tutorial/bigger-applications.md index 3bf406f3a..7adbab77c 100644 --- a/docs/tutorial/bigger-applications.md +++ b/docs/tutorial/bigger-applications.md @@ -229,7 +229,7 @@ It will include all the routes from that router as part of it. ### Include an `APIRouter` with a `prefix`, `tags`, and `responses` -Now, let's include the router form the `items` submodule. +Now, let's include the router from the `items` submodule. But, remember that we were lazy and didn't add `/items/` nor `tags` to all the *path operations*? diff --git a/docs/tutorial/cors.md b/docs/tutorial/cors.md index c4cf6641c..d37822b4f 100644 --- a/docs/tutorial/cors.md +++ b/docs/tutorial/cors.md @@ -34,7 +34,7 @@ So, for everything to work correctly, it's better to specify explicitly the allo You can configure it in your **FastAPI** application using Starlette's `CORSMiddleware`. -* Import it form Starlette. +* Import it from Starlette. * Create a list of allowed origins (as strings). * Add it as a "middleware" to your **FastAPI** application. diff --git a/docs/tutorial/debugging.md b/docs/tutorial/debugging.md index b23ffcec7..67d23c6e1 100644 --- a/docs/tutorial/debugging.md +++ b/docs/tutorial/debugging.md @@ -69,7 +69,7 @@ will not be executed. ## Run your code with your debugger -Because you are running the Uvicorn server directly from your code, you can call your Python program (your FastAPI application) directly form the debugger. +Because you are running the Uvicorn server directly from your code, you can call your Python program (your FastAPI application) directly from the debugger. --- diff --git a/docs/tutorial/sql-databases.md b/docs/tutorial/sql-databases.md index bf2b86fb9..d17c84fc1 100644 --- a/docs/tutorial/sql-databases.md +++ b/docs/tutorial/sql-databases.md @@ -84,7 +84,7 @@ Each instance of the `SessionLocal` class will have a connection to the database This object (class) is not a connection to the database yet, but once we create an instance of this class, that instance will have the actual connection to the database. -We name it `SessionLocal` to distinguish it form the `Session` we are importing from SQLAlchemy. +We name it `SessionLocal` to distinguish it from the `Session` we are importing from SQLAlchemy. We will use `Session` to declare types later and to get better editor support and completion.