瀏覽代碼

Removed extra ')'.

Omer Katz 11 年之前
父節點
當前提交
0f3d1f4a79
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/userguide/canvas.rst

+ 1 - 1
docs/userguide/canvas.rst

@@ -250,7 +250,7 @@ The Primitives
         Chunking splits a long list of arguments into parts, e.g the operation::
         Chunking splits a long list of arguments into parts, e.g the operation::
 
 
             >>> items = zip(xrange(1000), xrange(1000))  # 1000 items
             >>> items = zip(xrange(1000), xrange(1000))  # 1000 items
-            >>> add.chunks(items, 10))
+            >>> add.chunks(items, 10)
 
 
         will split the list of items into chunks of 10, resulting in 100
         will split the list of items into chunks of 10, resulting in 100
         tasks (each processing 10 items in sequence).
         tasks (each processing 10 items in sequence).