summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2013-10-08 07:45:29 -0700
committerMarc Tamlyn <marc.tamlyn@gmail.com>2013-10-08 07:45:29 -0700
commit7523e784633b7757fbc82df58f80b197eeed988a (patch)
treebf6043ec36303f8852ec9ff3ecd1e52af9b01c49
parent40b95a24ae159b6600457a23d6c2779a18037b7b (diff)
parent43f213e475ec2f3b74b47adf72551df422b2f480 (diff)
Merge pull request #1719 from dlo/docs/email-typos
Fix grammatical errors in email documentation
-rw-r--r--docs/topics/email.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/email.txt b/docs/topics/email.txt
index ebbb0963f4..bfb3765d15 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -441,7 +441,7 @@ Console backend
~~~~~~~~~~~~~~~
Instead of sending out real emails the console backend just writes the
-emails that would be send to the standard output. By default, the console
+emails that would be sent to the standard output. By default, the console
backend writes to ``stdout``. You can use a different stream-like object by
providing the ``stream`` keyword argument when constructing the connection.
@@ -480,7 +480,7 @@ The ``'locmem'`` backend stores messages in a special attribute of the
``django.core.mail`` module. The ``outbox`` attribute is created when the
first message is sent. It's a list with an
:class:`~django.core.mail.EmailMessage` instance for each message that would
-be send.
+be sent.
To specify this backend, put the following in your settings::