]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Fix broken link in `docs/en/docs/tutorial/sql-databases.md` (#10765)
authorSungyun Hur <ethan0311@gmail.com>
Wed, 10 Jan 2024 18:15:04 +0000 (03:15 +0900)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2024 18:15:04 +0000 (13:15 -0500)
Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com>
docs/en/docs/tutorial/sql-databases.md

index 010244bbf6f141d191768ab23603a533f6fdb918..ce6507912252e1e08e62005604934b4a6a584159 100644 (file)
@@ -624,7 +624,7 @@ def read_user(user_id: int, db: Session = Depends(get_db)):
 ```
 
 !!! info
-    If you need to connect to your relational database asynchronously, see [Async SQL (Relational) Databases](../advanced/async-sql-databases.md){.internal-link target=_blank}.
+    If you need to connect to your relational database asynchronously, see [Async SQL (Relational) Databases](../how-to/async-sql-encode-databases.md){.internal-link target=_blank}.
 
 !!! note "Very Technical Details"
     If you are curious and have a deep technical knowledge, you can check the very technical details of how this `async def` vs `def` is handled in the [Async](../async.md#very-technical-details){.internal-link target=_blank} docs.