From b41db0e74544943878f53767c471bf7489093d3f Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sat, 12 Dec 2015 00:40:34 +0000 Subject: [PATCH] Issue #2630180 by mpp: 2 trailing dots in the Path Alias field description --- core/modules/path/src/Form/PathFormBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/path/src/Form/PathFormBase.php b/core/modules/path/src/Form/PathFormBase.php index 95d261ac7e8e..8eacb42a0915 100644 --- a/core/modules/path/src/Form/PathFormBase.php +++ b/core/modules/path/src/Form/PathFormBase.php @@ -116,7 +116,7 @@ abstract class PathFormBase extends FormBase { '#default_value' => $this->path['alias'], '#maxlength' => 255, '#size' => 45, - '#description' => $this->t('Specify an alternative path by which this data can be accessed. For example, type "/about" when writing an about page. Use a relative path with a slash in front..'), + '#description' => $this->t('Specify an alternative path by which this data can be accessed. For example, type "/about" when writing an about page. Use a relative path with a slash in front.'), '#field_prefix' => $this->requestContext->getCompleteBaseUrl(), '#required' => TRUE, );