mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
Fix typo in Field function docstring (#4931)
This commit is contained in:
+1
-1
@@ -298,7 +298,7 @@ def Field(
|
||||
:param max_items: only applies to lists, requires the field to have a maximum number of
|
||||
elements. The schema will have a ``maxItems`` validation keyword
|
||||
:param min_length: only applies to strings, requires the field to have a minimum length. The
|
||||
schema will have a ``maximum`` validation keyword
|
||||
schema will have a ``minLength`` validation keyword
|
||||
:param max_length: only applies to strings, requires the field to have a maximum length. The
|
||||
schema will have a ``maxLength`` validation keyword
|
||||
:param frozen: a boolean which defaults to True. When False, the field raises a TypeError if the field is
|
||||
|
||||
Reference in New Issue
Block a user