From 5dc21ce64a5ae8c39e4b398526b0ac88ab9e71d5 Mon Sep 17 00:00:00 2001 From: Ilan Date: Mon, 13 Jul 2015 15:40:48 +0200 Subject: [PATCH] docs: fixed typo --- docs/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.rst b/docs/examples.rst index 21aa63a..45d9024 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -58,7 +58,7 @@ A good place to use async tasks are Django's model signals. You don't want to de # tell everyone async('tasks.inform_everyone', instance) -The task will send a message to everyone else informing them that the users email address has changed. Note that this has adds almost no overhead to the save action:: +The task will send a message to everyone else informing them that the users email address has changed. Note that this adds almost no overhead to the save action:: # tasks.py def inform_everyone(user):