Procházet zdrojové kódy

Fixing simple misplaced parenthesis.

Steven Parker před 9 roky
rodič
revize
3574d014ca
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      docs/userguide/canvas.rst

+ 2 - 2
docs/userguide/canvas.rst

@@ -911,11 +911,11 @@ while calling ``.apply_async`` will create a dedicated
 task so that the individual tasks are applied in a worker
 instead::
 
-    >>> add.chunks(zip(range(100), range(100), 10)).apply_async()
+    >>> add.chunks(zip(range(100), range(100)), 10).apply_async()
 
 You can also convert chunks to a group::
 
-    >>> group = add.chunks(zip(range(100), range(100), 10)).group()
+    >>> group = add.chunks(zip(range(100), range(100)), 10).group()
 
 and with the group skew the countdown of each task by increments
 of one::