summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorMatt Hooks <mhooks@zebra.com>2015-04-02 19:27:59 -0400
committerTim Graham <timograham@gmail.com>2015-04-02 20:38:22 -0400
commit2c39f282b8389f47fee4b24e785a58567c6c3629 (patch)
tree819ee1f692cac230bffd51de58c91f950768b73b /django
parent5bc3123479bd97dc9d8a36fa9a3421a71063d1da (diff)
downloaddjango-2c39f282b8389f47fee4b24e785a58567c6c3629.tar.gz
Fixed typo in django.core.files.File docstring.
Diffstat (limited to 'django')
-rw-r--r--django/core/files/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/base.py b/django/core/files/base.py
index 0c6109f1b4..a27d363658 100644
--- a/django/core/files/base.py
+++ b/django/core/files/base.py
@@ -70,7 +70,7 @@ class File(FileProxyMixin):
def chunks(self, chunk_size=None):
"""
- Read the file and yield chucks of ``chunk_size`` bytes (defaults to
+ Read the file and yield chunks of ``chunk_size`` bytes (defaults to
``UploadedFile.DEFAULT_CHUNK_SIZE``).
"""
if not chunk_size: