From 7d0df22690a31c9fbbace9e3cf3d8a86c5cc7f2c Mon Sep 17 00:00:00 2001 From: Gary Donovan Date: Fri, 9 Oct 2020 22:11:59 +1100 Subject: [PATCH] Fix typo in docstring (#1866) --- pydantic/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydantic/fields.py b/pydantic/fields.py index c162616..f9114a1 100644 --- a/pydantic/fields.py +++ b/pydantic/fields.py @@ -128,7 +128,7 @@ def Field( **extra: Any, ) -> Any: """ - Used to provide extra information about a field, either for the model schema or complex valiation. Some arguments + Used to provide extra information about a field, either for the model schema or complex validation. Some arguments apply only to number fields (``int``, ``float``, ``Decimal``) and some apply only to ``str``. :param default: since this is replacing the field’s default, its first argument is used