diff --git a/core/modules/package_manager/package_manager.module b/core/modules/package_manager/package_manager.module index 31ff3ac7d7d2aaf27643a8e8092c071d45067353..8560fc55ab99da433fa84c780a7fdf1556ab1b7d 100644 --- a/core/modules/package_manager/package_manager.module +++ b/core/modules/package_manager/package_manager.module @@ -17,7 +17,7 @@ function package_manager_help($route_name, RouteMatchInterface $route_match) { case 'help.page.package_manager': $output = '<h3>' . t('About') . '</h3>'; $output .= '<p>' . t('Package Manager is an API for installing and updating Drupal core and contributed modules.') . '</p>'; - $output .= '<p>' . t('For more information, see the <a href=":automatic-updates-documentation">online documentation for the Automatic Updates module</a>.', [':automatic-updates-documentation' => 'https://www.drupal.org/docs/8/update/automatic-updates']) . '</p>'; + $output .= '<p>' . t('For more information, see the <a href=":package-manager-documentation">online documentation for the Package Manager module</a>.', [':package-manager-documentation' => 'https://www.drupal.org/docs/8/core/modules/package-manager']) . '</p>'; return $output; } }