From fdc1c6435c8fb9e720169ef0aebf87c33f1d86c2 Mon Sep 17 00:00:00 2001 From: Nick Frazier Date: Sat, 16 Oct 2021 17:31:29 -0400 Subject: [PATCH] [3.2.x] Fixed #33198 -- Corrected BinaryField.max_length docs. Backport of 0d4e575c96d408e0efb4dfd0cbfc864219776950 from main --- docs/ref/models/fields.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 64ab3e3e0b..3d671a9aac 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -567,8 +567,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``