1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Avoided counting attributes and methods in docs.

This commit is contained in:
Mariusz Felisiak
2021-12-28 12:36:57 +01:00
committed by GitHub
parent b13d920b7b
commit ad6bb20557
8 changed files with 37 additions and 49 deletions

View File

@@ -374,7 +374,7 @@ For each field, we describe the default widget used if you don't specify
``min_length`` are provided. Otherwise, all inputs are valid.
* Error message keys: ``required``, ``max_length``, ``min_length``
Has four optional arguments for validation:
Has the following optional arguments for validation:
.. attribute:: max_length
.. attribute:: min_length
@@ -550,7 +550,7 @@ For each field, we describe the default widget used if you don't specify
regular expression.
* Error message keys: ``required``, ``invalid``
Has three optional arguments ``max_length``, ``min_length``, and
Has the optional arguments ``max_length``, ``min_length``, and
``empty_value`` which work just as they do for :class:`CharField`.
``FileField``
@@ -566,7 +566,7 @@ For each field, we describe the default widget used if you don't specify
* Error message keys: ``required``, ``invalid``, ``missing``, ``empty``,
``max_length``
Has two optional arguments for validation, ``max_length`` and
Has the optional arguments for validation: ``max_length`` and
``allow_empty_file``. If provided, these ensure that the file name is at
most the given length, and that validation will succeed even if the file
content is empty.
@@ -1009,7 +1009,7 @@ For each field, we describe the default widget used if you don't specify
given value is a valid URL.
* Error message keys: ``required``, ``invalid``
Has three optional arguments ``max_length``, ``min_length``, and
Has the optional arguments ``max_length``, ``min_length``, and
``empty_value`` which work just as they do for :class:`CharField`.
``UUIDField``