From: Sungyun Hur Date: Wed, 10 Jan 2024 18:15:04 +0000 (+0900) Subject: 📝 Fix broken link in `docs/en/docs/tutorial/sql-databases.md` (#10765) X-Git-Tag: 0.109.0~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=843bc85155be86d7688ab126bb7ea266d410bf71;p=thirdparty%2Ffastapi%2Ffastapi.git 📝 Fix broken link in `docs/en/docs/tutorial/sql-databases.md` (#10765) Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com> --- diff --git a/docs/en/docs/tutorial/sql-databases.md b/docs/en/docs/tutorial/sql-databases.md index 010244bbf6..ce65079122 100644 --- a/docs/en/docs/tutorial/sql-databases.md +++ b/docs/en/docs/tutorial/sql-databases.md @@ -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.