Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Drupal/cron/Command/CronCreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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('');
Expand Down
2 changes: 1 addition & 1 deletion lib/Drupal/cron/Command/CronRunCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
),
);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Drupal/cron/Strategy/ShellStrategy.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* @file
* Contains Drupal\cron\Resolver\ShellStrategy.
* Contains Drupal\cron\Strategy\ShellStrategy.
*/

namespace Drupal\cron\Strategy;
Expand Down
2 changes: 1 addition & 1 deletion lib/Drupal/cron/Strategy/StrategyInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* @file
* Contains Drupal\cron\Resolver\StrategyInterface.
* Contains Drupal\cron\Strategy\StrategyInterface.
*/

namespace Drupal\cron\Strategy;
Expand Down