Browse Source

[docs][calling] clarification in help box

Ask Solem 9 years ago
parent
commit
fd7e48bfd1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      docs/userguide/calling.rst

+ 2 - 1
docs/userguide/calling.rst

@@ -39,7 +39,8 @@ The API defines a standard set of execution options, as well as three methods:
 .. topic:: Quick Cheat Sheet
 
     - ``T.delay(arg, kwarg=value)``
-        always a shortcut to ``.apply_async``.
+        Star arguments shortcut to ``.apply_async``.
+        (``.delay(*args, **kwargs)`` calls ``.apply_async(args, kwargs)``).
 
     - ``T.apply_async((arg,), {'kwarg': value})``