diff --git a/django/core/files/storage.py b/django/core/files/storage.py index e8db352d3e..c8b4c7185d 100644 --- a/django/core/files/storage.py +++ b/django/core/files/storage.py @@ -97,7 +97,7 @@ class Storage(object): def exists(self, name): """ - Returns True if a file referened by the given name already exists in the + Returns True if a file referenced by the given name already exists in the storage system, or False if the name is available for a new file. """ raise NotImplementedError('subclasses of Storage must provide a exists() method')