]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix documentation typo in Query Parameters and String Validations (#1832)
authorYağızcan Değirmenci <62724709+ycd@users.noreply.github.com>
Sat, 8 Aug 2020 18:19:14 +0000 (21:19 +0300)
committerGitHub <noreply@github.com>
Sat, 8 Aug 2020 18:19:14 +0000 (20:19 +0200)
docs/en/docs/tutorial/query-params-str-validations.md

index 465ce3f88e0ae8459129a4de763df0a9076b2c19..4edb4f597256a3468267a7be7204c2a6c41d832f 100644 (file)
@@ -142,7 +142,7 @@ So, when you need to declare a value as required while using `Query`, you can us
 ```
 
 !!! info
-    If you hadn't seen that `...` before: it is a special single value, it is <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">part of Python and is called "Ellipsis"</a>.
+    If you hadn't seen that `...` before: it is a special single value, it is <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">part of Python and is called "Ellipsis"</a>.
 
 This will let **FastAPI** know that this parameter is required.