summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-24 20:00:08 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-24 20:00:08 +0000
commit395b188423abe4da34457eacd7ce6eb34a24874f (patch)
treeb4d7df5b31ea7eb90d2d741979adc8549c309f2f /docs
parent14ea5bfef5f10fccd20cc3dc70b39f55673b0ebd (diff)
Fixed typo in docs/email.txt. Thanks, Archatas
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2122 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/email.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/email.txt b/docs/email.txt
index ba2adf8201..c39fbbd114 100644
--- a/docs/email.txt
+++ b/docs/email.txt
@@ -110,8 +110,8 @@ This sends a message to john@example.com and jane@example.com, with them both
receiving a separate e-mail::
datatuple = (
- ('Subject', 'Message.', 'from@example.com', ['john@example.com'],
- ('Subject', 'Message.', 'from@example.com', ['jane@example.com'],
+ ('Subject', 'Message.', 'from@example.com', ['john@example.com']),
+ ('Subject', 'Message.', 'from@example.com', ['jane@example.com']),
)
send_mass_mail(datatuple)