diff --git a/src/Form/SettingsForm.php b/src/Form/SettingsForm.php index b56f019..ff0d3fc 100644 --- a/src/Form/SettingsForm.php +++ b/src/Form/SettingsForm.php @@ -101,7 +101,7 @@ class SettingsForm extends ConfigFormBase { $form['ignored_paths'] = [ '#type' => 'textarea', '#title' => $this->t('Paths to ignore for readiness checks'), - '#description' => $this->t('Paths relative to %drupal_root. One path per line. Automatic Updates is intentionally handicapped to Drupal core. It is recommended to ignore paths to contrib extensions.', ['%drupal_root' => $this->drupalRoot]), + '#description' => $this->t('Paths relative to %drupal_root. One path per line. Automatic Updates is intentionally limited to Drupal core. It is recommended to ignore paths to contrib extensions.', ['%drupal_root' => $this->drupalRoot]), '#default_value' => $config->get('ignored_paths'), '#states' => [ 'visible' => [ @@ -146,7 +146,7 @@ class SettingsForm extends ConfigFormBase { } $form['experimental']['update'] = [ - '#prefix' => 'Database updates are not run after an update. This module does not have a stable release and it is recommended to not use these features on a live website. Use at your own risk.', + '#prefix' => 'Database updates are not run after an update. This module does not have a stable release and it is recommended to not use these features on a live website. Use at your own risk.', '#type' => 'html_tag', '#tag' => 'p', '#value' => $update_text,