]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix typo in `docs/en/docs/tutorial/sql-databases.md` (#4875)
authorWilliam Poetra Yoga <william.poetra@gmail.com>
Mon, 9 May 2022 23:54:51 +0000 (06:54 +0700)
committerGitHub <noreply@github.com>
Mon, 9 May 2022 23:54:51 +0000 (18:54 -0500)
docs/en/docs/tutorial/sql-databases.md

index 9dc2f64c6e67f0ab2f43df11f06702a938ac82e9..60c7fb0665f5f9f87dd74dbfd315a04ce4d95ec2 100644 (file)
@@ -491,7 +491,7 @@ You can find an example of Alembic in a FastAPI project in the templates from [P
 
 ### Create a dependency
 
-Now use the `SessionLocal` class we created in the `sql_app/databases.py` file to create a dependency.
+Now use the `SessionLocal` class we created in the `sql_app/database.py` file to create a dependency.
 
 We need to have an independent database session/connection (`SessionLocal`) per request, use the same session through all the request and then close it after the request is finished.