✏️ Fix typos in docs, from forms (#176)

This commit is contained in:
Christopher Dignam
2019-04-27 09:05:06 -04:00
committed by Sebastián Ramírez
parent f4be79be51
commit 866af5bca6
4 changed files with 4 additions and 4 deletions

View File

@@ -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.