diff --git a/core/Command/Background/ListCommand.php b/core/Command/Background/ListCommand.php index 4d5329ec22f..ef5b478a197 100644 --- a/core/Command/Background/ListCommand.php +++ b/core/Command/Background/ListCommand.php @@ -70,7 +70,7 @@ class ListCommand extends Base { $jobsInfo = $this->formatJobs($this->jobList->getJobsIterator($input->getOption('class'), $limit, (int)$input->getOption('offset'))); $this->writeTableInOutputFormat($input, $output, $jobsInfo); if ($input->getOption('output') === self::OUTPUT_FORMAT_PLAIN && count($jobsInfo) >= $limit) { - $output->writeln("\nOutput is currently limited to first " . $limit . " jobs. Specify `-l, --limit[=LIMIT]` to override."); + $output->writeln("\nOutput is currently limited to " . $limit . " jobs. Specify `-l, --limit[=LIMIT]` to override."); } return 0; }