aboutsummaryrefslogtreecommitdiffstats
path: root/includes/jobqueue/Job.php
diff options
context:
space:
mode:
authorSiddharth VP <siddharthvp@gmail.com>2021-12-30 18:33:20 +0530
committerSiddharth VP <siddharthvp@gmail.com>2021-12-30 20:38:04 +0530
commit60faebb725998e1999bb3cc9c875eabf3364c60d (patch)
treeb7f737947564564f0f87b87313445368ee9cd097 /includes/jobqueue/Job.php
parenta46be96d847b8757cc6dc51fbdd313c8c359b80b (diff)
downloadmediawikicore-60faebb725998e1999bb3cc9c875eabf3364c60d.tar.gz
mediawikicore-60faebb725998e1999bb3cc9c875eabf3364c60d.zip
Fix typos in comments (I-J)
Change-Id: Icaea2b6665cfc3b811d94f70c93452237f5e72bf
Diffstat (limited to 'includes/jobqueue/Job.php')
-rw-r--r--includes/jobqueue/Job.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/jobqueue/Job.php b/includes/jobqueue/Job.php
index 108016288e7e..03cc2788fc2e 100644
--- a/includes/jobqueue/Job.php
+++ b/includes/jobqueue/Job.php
@@ -27,7 +27,7 @@ use MediaWiki\Page\PageReference;
* Class to both describe a background job and handle jobs.
* To push jobs onto queues, use JobQueueGroup::singleton()->push();
*
- * Job objects are constructed by the job queue, and must have an approriate
+ * Job objects are constructed by the job queue, and must have an appropriate
* constructor signature; see IJobSpecification.
*
* @stable to extend