diff --git a/lib/Drupal/cron/Command/CronCreateCommand.php b/lib/Drupal/cron/Command/CronCreateCommand.php index 3db2856..11f5c55 100644 --- a/lib/Drupal/cron/Command/CronCreateCommand.php +++ b/lib/Drupal/cron/Command/CronCreateCommand.php @@ -42,7 +42,7 @@ public function execute() { $job['name'] = $name; drush_log('', 'ok'); - drush_print(dt('The type of the job (can only be set to "shell" at this time.')); + drush_print(dt('The type of the job (can only be set to "shell" at this time).')); $type = drush_prompt(dt('Type')); while (!$this->validateType($type)) { drush_print(''); diff --git a/lib/Drupal/cron/Command/CronRunCommand.php b/lib/Drupal/cron/Command/CronRunCommand.php index d42edf0..fa507cd 100644 --- a/lib/Drupal/cron/Command/CronRunCommand.php +++ b/lib/Drupal/cron/Command/CronRunCommand.php @@ -32,7 +32,7 @@ public function configure(&$items) { ), 'required-arguments' => FALSE, 'options' => array( - 'force' => 'Run the specified job, regardless the state of the cron job.', + 'force' => 'Run the specified job, regardless of the state of the cron job.', ), ); } diff --git a/lib/Drupal/cron/Strategy/ShellStrategy.php b/lib/Drupal/cron/Strategy/ShellStrategy.php index 6de0dc2..b343e3f 100644 --- a/lib/Drupal/cron/Strategy/ShellStrategy.php +++ b/lib/Drupal/cron/Strategy/ShellStrategy.php @@ -1,7 +1,7 @@