summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/system/src/CronController.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/system/src/CronController.php')
-rw-r--r--core/modules/system/src/CronController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/system/src/CronController.php b/core/modules/system/src/CronController.php
index 6ba1e031a4d..59bc6e9289a 100644
--- a/core/modules/system/src/CronController.php
+++ b/core/modules/system/src/CronController.php
@@ -37,7 +37,7 @@ class CronController extends ControllerBase {
public function run() {
$this->cron->run();
- // HTTP 204 is "No content", meaning "I did what you asked and we're done."
+ // HTTP 204 is "No content", meaning "I did what you asked and we're done.".
return new Response('', 204);
}