From b976fd2c90fed6205591c2938f56b32a9d70e1b2 Mon Sep 17 00:00:00 2001 From: xjm Date: Tue, 23 Jun 2020 07:11:01 -0500 Subject: [PATCH] Issue #3138788 by jungle, sja112, xjm: Fix "autcomplete" typos in core --- .../theme_test/src/EventSubscriber/ThemeTestSubscriber.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php b/core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php index b951774165..2cc0d36976 100644 --- a/core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php +++ b/core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php @@ -78,11 +78,11 @@ public function onRequest(RequestEvent $event) { */ public function onView(RequestEvent $event) { $current_route = $this->currentRouteMatch->getRouteName(); - $entity_autcomplete_route = [ + $entity_autocomplete_route = [ 'system.entity_autocomplete', ]; - if (in_array($current_route, $entity_autcomplete_route)) { + if (in_array($current_route, $entity_autocomplete_route)) { if ($this->container->initialized('theme.registry')) { throw new \Exception('registry initialized'); } -- GitLab