]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix a small code highlight line error (#5256)
author非法操作 <hjlarry@163.com>
Sun, 4 Sep 2022 13:18:08 +0000 (21:18 +0800)
committerGitHub <noreply@github.com>
Sun, 4 Sep 2022 13:18:08 +0000 (15:18 +0200)
docs/en/docs/tutorial/query-params-str-validations.md

index c5fc35b88aefff763d313a01caf58a972ab30fd3..060e1d58a4232a6abb9dbcb0a629eb1eb620a84f 100644 (file)
@@ -216,7 +216,7 @@ To do that, you can declare that `None` is a valid type but still use `default=.
 
 === "Python 3.6 and above"
 
-    ```Python hl_lines="8"
+    ```Python hl_lines="9"
     {!> ../../../docs_src/query_params_str_validations/tutorial006c.py!}
     ```