From 997b0c3d37ce6883eaa58a9e871a0f9c3c48ee04 Mon Sep 17 00:00:00 2001 From: GDR! Date: Mon, 26 Jan 2015 19:59:30 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99ead50..614daa8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Last Celery version tested is 3.1.11 $c = new Celery('localhost', 'myuser', 'mypass', 'myvhost'); $result = $c->PostTask('tasks.add', array(2,2)); - // The tasks are serializable so you can do the following: + // The results are serializable so you can do the following: $_SESSION['celery_result'] = $result; // and use this variable in an AJAX call or whatever