]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Update `docs/en/docs/tutorial/middleware.md` (#13444)
authorRishat-F <66554797+Rishat-F@users.noreply.github.com>
Thu, 20 Mar 2025 12:29:48 +0000 (15:29 +0300)
committerGitHub <noreply@github.com>
Thu, 20 Mar 2025 12:29:48 +0000 (13:29 +0100)
Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com>
docs/en/docs/tutorial/middleware.md

index 53c47a08571558eb665ac99a7b03303819e6fda2..4f7980165ca67dedd2e00345c01f4e5ecb80ec85 100644 (file)
@@ -15,7 +15,7 @@ A "middleware" is a function that works with every **request** before it is proc
 
 If you have dependencies with `yield`, the exit code will run *after* the middleware.
 
-If there were any background tasks (documented later), they will run *after* all the middleware.
+If there were any background tasks (covered in the [Background Tasks](background-tasks.md){.internal-link target=_blank} section, you will see it later), they will run *after* all the middleware.
 
 ///