diff --git a/core/modules/media_library/src/Form/SettingsForm.php b/core/modules/media_library/src/Form/SettingsForm.php index 68193583f58..434cd684d20 100644 --- a/core/modules/media_library/src/Form/SettingsForm.php +++ b/core/modules/media_library/src/Form/SettingsForm.php @@ -35,7 +35,7 @@ class SettingsForm extends ConfigFormBase { '#type' => 'checkbox', '#title' => $this->t('Enable advanced UI'), '#default_value' => $this->config('media_library.settings')->get('advanced_ui'), - '#description' => $this->t('If checked, users creating new media items in the media library will see a summary of their selected media items, and they will be able insert their selection directly into the media field or text editor.'), + '#description' => $this->t('If checked, users creating new media items in the media library will see a summary of their selected media items, and they will be able to insert their selection directly into the media field or text editor.'), ]; return parent::buildForm($form, $form_state); }