jobqueue: Fix typo in claimTTL documentation
authorTimo Tijhof <krinklemail@gmail.com>
Thu, 9 Jul 2015 16:52:07 +0000 (17:52 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Thu, 9 Jul 2015 16:52:22 +0000 (17:52 +0100)
Change-Id: I0232492db424a0dd6bea23d04772f14980a73fd4

includes/jobqueue/JobQueue.php

index 913aea0..69a3def 100644 (file)
@@ -94,7 +94,7 @@ abstract class JobQueue {
         *                  This might be useful for improving concurrency for job acquisition.
         *   - claimTTL   : If supported, the queue will recycle jobs that have been popped
         *                  but not acknowledged as completed after this many seconds. Recycling
-        *                  of jobs simple means re-inserting them into the queue. Jobs can be
+        *                  of jobs simply means re-inserting them into the queue. Jobs can be
         *                  attempted up to three times before being discarded.
         *
         * Queue classes should throw an exception if they do not support the options given.