Explorar el Código

Fixed #33198 -- Corrected BinaryField.max_length docs.

Nick Frazier hace 3 años
padre
commit
0d4e575c96
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      docs/ref/models/fields.txt

+ 2 - 2
docs/ref/models/fields.txt

@@ -573,8 +573,8 @@ case it can't be included in a :class:`~django.forms.ModelForm`.
 
 .. attribute:: BinaryField.max_length
 
-    The maximum length (in characters) of the field. The maximum length is
-    enforced in Django's validation using
+    The maximum length (in bytes) of the field. The maximum length is enforced
+    in Django's validation using
     :class:`~django.core.validators.MaxLengthValidator`.
 
 .. admonition:: Abusing ``BinaryField``