Trival: Comment speling
authorGabriel Wicke <gwicke@wikimedia.org>
Mon, 9 Feb 2015 04:06:07 +0000 (20:06 -0800)
committerOri.livneh <ori@wikimedia.org>
Mon, 9 Feb 2015 23:20:29 +0000 (23:20 +0000)
Change-Id: I17f50b5f26f5e8c1c9687c040c64699720ea6167

includes/jobqueue/JobQueueRedis.php

index abfdc8c..9368fbf 100644 (file)
@@ -24,7 +24,7 @@
 /**
  * Class to handle job queues stored in Redis
  *
- * This is faster, less resource intensive, queue that JobQueueDB.
+ * This is a faster and less resource-intensive job queue than JobQueueDB.
  * All data for a queue using this class is placed into one redis server.
  *
  * There are eight main redis keys used to track jobs:
@@ -49,7 +49,7 @@
  *
  * This class requires Redis 2.6 as it makes use Lua scripts for fast atomic operations.
  * Additionally, it should be noted that redis has different persistence modes, such
- * as rdb snapshots, journaling, and no persistent. Appropriate configuration should be
+ * as rdb snapshots, journaling, and no persistence. Appropriate configuration should be
  * made on the servers based on what queues are using it and what tolerance they have.
  *
  * @ingroup JobQueue