diff --git a/core/modules/inline_form_errors/inline_form_errors.module b/core/modules/inline_form_errors/inline_form_errors.module index 52e572d..33e5f869 100644 --- a/core/modules/inline_form_errors/inline_form_errors.module +++ b/core/modules/inline_form_errors/inline_form_errors.module @@ -15,7 +15,7 @@ function inline_form_errors_help($route_name, RouteMatchInterface $route_match) case 'help.page.inline_form_errors': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Inline Form Errors module provides an experimental approach to form errors, placing the error messages next to the elements themselves. For more information, see the online documentation for the Inline Form Errors module.', [':inline_form_error' => 'https://www.drupal.org/documentation/modules/inline_form_error']) . '

'; + $output .= '

' . t('The Inline Form Errors module makes form errors more accessible and user friendly. It places the error messages next to the form elements themselves and adds a summary of all errors. For more information, see the online documentation for the Inline Form Errors module.', [':inline_form_error' => 'https://www.drupal.org/docs/8/core/modules/inline-form-errors']) . '

'; return $output; } }