Ask Solem 11 years ago
parent
commit
a42cb0aae6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/app/base.py

+ 1 - 1
celery/app/base.py

@@ -165,7 +165,7 @@ class Celery(object):
                 if opts.get('_force_evaluate'):
                     ret = self._task_from_fun(fun, **opts)
                 else:
-                    # return a proxy object that is only evaluated when first used
+                    # return a proxy object that is only evaluated on first use
                     ret = PromiseProxy(self._task_from_fun, (fun, ), opts)
                     self._pending.append(ret)
                 if _filt: