Fixed typo in django.core.files.File docstring.

This commit is contained in:
Matt Hooks 2015-04-02 19:27:59 -04:00 committed by Tim Graham
parent 5bc3123479
commit 2c39f282b8
1 changed files with 1 additions and 1 deletions

View File

@ -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: