diff --git a/django/core/files/base.py b/django/core/files/base.py index 5403d4a7027..63e3ee99a99 100644 --- a/django/core/files/base.py +++ b/django/core/files/base.py @@ -120,7 +120,7 @@ class File(FileProxyMixin): class ContentFile(File): """ - A File-like object that take just raw content, rather than an actual file. + A File-like object that takes just raw content, rather than an actual file. """ def __init__(self, content, name=None): stream_class = StringIO if isinstance(content, str) else BytesIO