summaryrefslogtreecommitdiff
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:39:00 -0400
commit5e4a69e07d6c038278edcacd34e184baef527d74 (patch)
tree8890d6c2fae3e8b52de1a6410a59f558b06ee661
parentf718691ec8eb29e0188e265bad8c6a1165aee830 (diff)
[1.8.x] Fixed typo in django.core.files.File docstring.
Backport of 2c39f282b8389f47fee4b24e785a58567c6c3629 from master
-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: