Explorar o código

Fixes typo in docs, thanks to anh. Closes #697

Ask Solem %!s(int64=13) %!d(string=hai) anos
pai
achega
6429231537
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/whatsnew-2.6.rst

+ 1 - 1
docs/whatsnew-2.6.rst

@@ -176,7 +176,7 @@ Tasks can now have callbacks and errbacks, and dependencies are recorded
         >>> from celery import chain
 
         # (2 + 2) * 8 / 2
-        >>> res = chain(add.subtask((4, 4)),
+        >>> res = chain(add.subtask((2, 2)),
                         mul.subtask((8, )),
                         div.subtask((2,))).apply_async()
         >>> res.get() == 16