diff --git a/core/lib/Drupal/Core/EventSubscriber/ModuleRouteSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/ModuleRouteSubscriber.php index 3b6b4bf..5bb903e 100644 --- a/core/lib/Drupal/Core/EventSubscriber/ModuleRouteSubscriber.php +++ b/core/lib/Drupal/Core/EventSubscriber/ModuleRouteSubscriber.php @@ -58,8 +58,8 @@ public function removeRoutes(RouteBuildEvent $event) { $explode_and = $this->explodeString($modules, '+'); if (count($explode_and) > 1) { foreach ($explode_and as $module) { - // If any moduleExists() call returns FALSE, remove the route move - // on to the next. + // If any moduleExists() call returns FALSE, remove the route and + // move on to the next. if (!$this->moduleHandler->moduleExists($module)) { $collection->remove($name); continue 2;