✏️ Fix typos in `docs/zh/docs/tutorial/extra-data-types.md` (#10727)

This commit is contained in:
HiemalBeryl 2024-01-12 19:13:04 +08:00 committed by GitHub
parent 3ca38568c1
commit 4c231854dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -44,11 +44,11 @@
* 产生的模式将指定那些 `set` 的值是唯一的 (使用 JSON 模式的 `uniqueItems`)。
* `bytes`:
* 标准的 Python `bytes`
* 在请求和应中被当作 `str` 处理。
* 在请求和应中被当作 `str` 处理。
* 生成的模式将指定这个 `str``binary` "格式"。
* `Decimal`:
* 标准的 Python `Decimal`
* 在请求和应中被当做 `float` 一样处理。
* 在请求和应中被当做 `float` 一样处理。
* 您可以在这里检查所有有效的pydantic数据类型: <a href="https://pydantic-docs.helpmanual.io/usage/types" class="external-link" target="_blank">Pydantic data types</a>.
## 例子