summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Loewenherz <dloewenherz@gmail.com>2013-10-08 09:20:02 -0500
committerTim Graham <timograham@gmail.com>2013-10-08 20:30:43 -0400
commitaf46932b575c494ac6d7e69c467f90cd2bb37ffe (patch)
tree45d9e924e902c08fb01ee337c2951d7a854ab1f2
parent1ab84b6c653c3169994064f7c1772a8e869c7282 (diff)
[1.6.x] Fix grammatical errors in email documentation
Backport of 43f213e475 from master
-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 b3d7254e7f..9aa9a26ec0 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -422,7 +422,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.
@@ -461,7 +461,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::