diff options
author | Jan Pieter Waagmeester <jieter@jieter.nl> | 2022-08-25 09:41:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 09:41:33 +0200 |
commit | 2480554dc4ada4ecf3f6a08e318735a2e50783f3 (patch) | |
tree | b2b0ec8ad68022470630e27af0c8089232ce7f5e /django/db/models/fields/files.py | |
parent | 9942f3fb490f56bf28ee69f0a07f3eb62e7d3ab3 (diff) | |
download | django-2480554dc4ada4ecf3f6a08e318735a2e50783f3.tar.gz |
Fixed typo in django/db/models/fields/files.py comment.
Diffstat (limited to 'django/db/models/fields/files.py')
-rw-r--r-- | django/db/models/fields/files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/fields/files.py b/django/db/models/fields/files.py index 1a3a0ce5fc..3d1291a221 100644 --- a/django/db/models/fields/files.py +++ b/django/db/models/fields/files.py @@ -167,7 +167,7 @@ class FileDescriptor(DeferredAttribute): return self # This is slightly complicated, so worth an explanation. - # instance.file`needs to ultimately return some instance of `File`, + # instance.file needs to ultimately return some instance of `File`, # probably a subclass. Additionally, this returned object needs to have # the FieldFile API so that users can easily do things like # instance.file.path and have that delegated to the file storage engine. |