diff options
author | Liyang Zhang <sudo.liyang@gmail.com> | 2023-03-20 02:07:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 08:07:23 +0100 |
commit | f9f9215d3e5500d9a8d0bec0936480ba34d42e88 (patch) | |
tree | d5b1b014c7dd155ea466275cb37d906151d3ae13 /django/core/files/utils.py | |
parent | b295b311712b598c053f7fa8cf6e6882217e35d9 (diff) | |
download | django-f9f9215d3e5500d9a8d0bec0936480ba34d42e88.tar.gz |
Fixed some typos in comments, docstrings, and tests.
Diffstat (limited to 'django/core/files/utils.py')
-rw-r--r-- | django/core/files/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/utils.py b/django/core/files/utils.py index 85342b2f3f..611f932f6e 100644 --- a/django/core/files/utils.py +++ b/django/core/files/utils.py @@ -26,7 +26,7 @@ def validate_file_name(name, allow_relative_path=False): class FileProxyMixin: """ - A mixin class used to forward file methods to an underlaying file + A mixin class used to forward file methods to an underlying file object. The internal file object has to be called "file":: class FileProxy(FileProxyMixin): |