]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🌐 Update Chinese translation for `docs/zh/docs/tutorial/query-params-str-validations...
author史雲昔 (Vincy SHI) <vincy@vincy1230.net>
Sun, 15 Dec 2024 17:10:14 +0000 (01:10 +0800)
committerGitHub <noreply@github.com>
Sun, 15 Dec 2024 17:10:14 +0000 (17:10 +0000)
docs/zh/docs/tutorial/query-params-str-validations.md

index 9b9d1f5fda9e0c9caf330ebd415f4d4bdcc5969c..2fba671f7c9f25684ce3392b7938bb8247dc9d51 100644 (file)
@@ -116,7 +116,7 @@ q: Union[str, None] = Query(default=None, min_length=3)
 
 /// info
 
-如果你之前没见过 `...` 这种用法:它是一个特殊的单独值,它是 <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">Python 的一部分并且被称为「省略号」</a>。
+如果你之前没见过 `...` 这种用法:它是一个特殊的单独值,它是 <a href="https://docs.python.org/zh-cn/3/library/constants.html#Ellipsis" class="external-link" target="_blank">Python 的一部分并且被称为“Ellipsis”(意为省略号 —— 译者注)</a>。
 Pydantic 和 FastAPI 使用它来显式的声明需要一个值。
 
 ///