diff --git a/core/modules/text/src/Plugin/Field/FieldWidget/TextareaWidget.php b/core/modules/text/src/Plugin/Field/FieldWidget/TextareaWidget.php index f65b14d..3584ebc 100644 --- a/core/modules/text/src/Plugin/Field/FieldWidget/TextareaWidget.php +++ b/core/modules/text/src/Plugin/Field/FieldWidget/TextareaWidget.php @@ -25,7 +25,7 @@ class TextareaWidget extends StringTextareaWidget { */ public function settingsForm(array $form, FormStateInterface $form_state) { $element = parent::settingsForm($form, $form_state); - $element['rows']['#description'] = $this->t('When using a text editor, the number of rows configured here may be ignored.'); + $element['rows']['#description'] = $this->t('A text editor might choose a different number of rows to display optimally.'); return $element; }