diff --git a/core/modules/inline_form_errors/inline_form_errors.module b/core/modules/inline_form_errors/inline_form_errors.module index 1ca3c9c..52e572d 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.') . '

'; + $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']) . '

'; return $output; } }