diff --git a/core/modules/system/src/Plugin/Condition/RequestPath.php b/core/modules/system/src/Plugin/Condition/RequestPath.php index 95c92f7..17373ce 100644 --- a/core/modules/system/src/Plugin/Condition/RequestPath.php +++ b/core/modules/system/src/Plugin/Condition/RequestPath.php @@ -105,7 +105,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta '#type' => 'textarea', '#title' => $this->t('Pages'), '#default_value' => $this->configuration['pages'], - '#description' => $this->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths is %user-wildcard for every user page. %front is the front page.", array( + '#description' => $this->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. An example path is %user-wildcard for every user page. %front is the front page.", array( '%user-wildcard' => '/user/*', '%front' => '', )),