diff options
| author | Daniel Hahler <git@thequod.de> | 2021-04-09 18:55:08 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2021-04-13 11:44:44 +0200 |
| commit | 59552bea5790c97be0da0a6f16ccd0189857c7a7 (patch) | |
| tree | 2e4a27ceb0889b9f9d038181841f2b2b48538743 | |
| parent | 3b8527e32b665df91622649550813bb1ec9a9251 (diff) | |
Corrected typo in Field.deconstruct docstring.
| -rw-r--r-- | django/db/models/fields/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index 0ce7de02c6..51155f5776 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -419,8 +419,8 @@ class Field(RegisterLookupMixin): * The name of the field on the model, if contribute_to_class() has been run. - * The import path of the field, including the class:e.g. - django.db.models.IntegerField This should be the most portable + * The import path of the field, including the class, e.g. + django.db.models.IntegerField. This should be the most portable version, so less specific may be better. * A list of positional arguments. * A dict of keyword arguments. |
