]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix code highlighted line in: `body-nested-models.md` (#3463)
authorjaystone776 <1732865113@qq.com>
Wed, 21 Jul 2021 12:44:15 +0000 (20:44 +0800)
committerGitHub <noreply@github.com>
Wed, 21 Jul 2021 12:44:15 +0000 (14:44 +0200)
docs/en/docs/tutorial/body-nested-models.md

index 7435e22d9b21ac107ee2b60a13b2a5d0763c91c9..5bacf166644cc7271cc00dc946e14d85a20cea85 100644 (file)
@@ -218,7 +218,7 @@ That's what we are going to see here.
 
 In this case, you would accept any `dict` as long as it has `int` keys with `float` values:
 
-```Python hl_lines="15"
+```Python hl_lines="9"
 {!../../../docs_src/body_nested_models/tutorial009.py!}
 ```