diff --git a/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php b/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php index ba8029d..b22355d 100644 --- a/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php +++ b/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php @@ -130,8 +130,8 @@ public function validateContexts(); * * @return array * A mapping of the expected assignment names to their context names. For - * example, if one of the $contexts is named 'user.current_user', but the plugin - * expects a context named 'user', then this map would contain + * example, if one of the $contexts is named 'user.current_user', but the + * plugin expects a context named 'user', then this map would contain * 'user' => 'user.current_user'. */ public function getContextMapping(); @@ -141,8 +141,8 @@ public function getContextMapping(); * * @param array $context_mapping * A mapping of the expected assignment names to their context names. For - * example, if one of the $contexts is named 'user.current_user', but the plugin - * expects a context named 'user', then this map would contain + * example, if one of the $contexts is named 'user.current_user', but the + * plugin expects a context named 'user', then this map would contain * 'user' => 'user.current_user'. * * @return $this