From 2480554dc4ada4ecf3f6a08e318735a2e50783f3 Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Thu, 25 Aug 2022 09:41:33 +0200 Subject: [PATCH] Fixed typo in django/db/models/fields/files.py comment. --- django/db/models/fields/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.