]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Highlight correct line in tutorial `docs/en/docs/tutorial/body-multiple-params...
authorSofie Van Landeghem <svlandeg@users.noreply.github.com>
Sat, 17 Aug 2024 03:57:21 +0000 (05:57 +0200)
committerGitHub <noreply@github.com>
Sat, 17 Aug 2024 03:57:21 +0000 (22:57 -0500)
Co-authored-by: Esteban Maya <emayacadavid9@gmail.com>
docs/en/docs/tutorial/body-multiple-params.md

index 3adfcd4d1b85f150d198334083ef3597548a3bfd..511fb358e6bebc07ad9d96981a7de140b22cecac 100644 (file)
@@ -228,7 +228,7 @@ For example:
 
 //// tab | Python 3.10+
 
-```Python hl_lines="27"
+```Python hl_lines="28"
 {!> ../../../docs_src/body_multiple_params/tutorial004_an_py310.py!}
 ```
 
@@ -236,7 +236,7 @@ For example:
 
 //// tab | Python 3.9+
 
-```Python hl_lines="27"
+```Python hl_lines="28"
 {!> ../../../docs_src/body_multiple_params/tutorial004_an_py39.py!}
 ```
 
@@ -244,7 +244,7 @@ For example:
 
 //// tab | Python 3.8+
 
-```Python hl_lines="28"
+```Python hl_lines="29"
 {!> ../../../docs_src/body_multiple_params/tutorial004_an.py!}
 ```
 
@@ -258,7 +258,7 @@ Prefer to use the `Annotated` version if possible.
 
 ///
 
-```Python hl_lines="25"
+```Python hl_lines="26"
 {!> ../../../docs_src/body_multiple_params/tutorial004_py310.py!}
 ```
 
@@ -272,7 +272,7 @@ Prefer to use the `Annotated` version if possible.
 
 ///
 
-```Python hl_lines="27"
+```Python hl_lines="28"
 {!> ../../../docs_src/body_multiple_params/tutorial004.py!}
 ```