From 3d650b4913c605a72060a0671c08f1a59ca91bfd Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 4 Nov 2010 21:09:51 +0000 Subject: [PATCH] Fixed #14619 -- corrected a typo in the email docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14463 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/email.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/email.txt b/docs/topics/email.txt index 2515973f23..46bb85e798 100644 --- a/docs/topics/email.txt +++ b/docs/topics/email.txt @@ -476,7 +476,7 @@ In-memory backend 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 send. It's a list with an +first message is sent. It's a list with an :class:`~django.core.mail.EmailMessage` instance for each message that would be send.