Job: Fix typo in exception message for invalid specification
[lhc/web/wiklou.git] / includes / jobqueue / Job.php
index d2f1dbc..2f98d53 100644 (file)
@@ -103,7 +103,9 @@ abstract class Job implements RunnableJob {
 
                                return $job;
                        } else {
-                               throw new InvalidArgumentException( "Could instantiate job '$command': bad spec!" );
+                               throw new InvalidArgumentException(
+                                       "Could not instantiate job '$command': bad spec!"
+                               );
                        }
                }