From 2c39f282b8389f47fee4b24e785a58567c6c3629 Mon Sep 17 00:00:00 2001 From: Matt Hooks Date: Thu, 2 Apr 2015 19:27:59 -0400 Subject: [PATCH] Fixed typo in django.core.files.File docstring. --- django/core/files/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: