Browse Source

Update slightly the doc (#3929)

Just a small update to make the exemple more clear
Tom 'Biwaa' Riat 8 years ago
parent
commit
b6ca6b6579
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/userguide/calling.rst

+ 2 - 2
docs/userguide/calling.rst

@@ -45,10 +45,10 @@ The API defines a standard set of execution options, as well as three methods:
     - ``T.apply_async((arg,), {'kwarg': value})``
 
     - ``T.apply_async(countdown=10)``
-        executes 10 seconds from now.
+        executes in 10 seconds from now.
 
     - ``T.apply_async(eta=now + timedelta(seconds=10))``
-        executes 10 seconds from now, specified using ``eta``
+        executes in 10 seconds from now, specified using ``eta``
 
     - ``T.apply_async(countdown=60, expires=120)``
         executes in one minute from now, but expires after 2 minutes.