summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-06 01:17:29 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-06 01:17:29 +0000
commit0f6555bce20d765212f40d12e8c2ab3d3c696da1 (patch)
treea48c3487624b6ef84ab69673e8f6bfccd31fe3ba /docs/topics
parent33d4aa8df121f1fa3019aa6663d02b547d38aa80 (diff)
downloaddjango-0f6555bce20d765212f40d12e8c2ab3d3c696da1.tar.gz
Fixed #13420 -- Clarified grammar in the email docs. Thanks to Dominic Rodger for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13104 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/email.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/email.txt b/docs/topics/email.txt
index c99909316d..f1b0047c9b 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -340,7 +340,7 @@ able to read the e-mail, regardless of their mail client. However, if you are
confident that your recipients can handle an alternative content type, you can
use the ``content_subtype`` attribute on the
:class:`~django.core.mail.EmailMessage` class to change the main content type.
-The major type will always be ``"text"``, but you can change it to the
+The major type will always be ``"text"``, but you can change the
subtype. For example::
msg = EmailMessage(subject, html_content, from_email, [to])