summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/models/fields/files.py2
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.