diff --git a/core/modules/search/templates/search-result.html.twig b/core/modules/search/templates/search-result.html.twig index 9431cca..535ee8e 100644 --- a/core/modules/search/templates/search-result.html.twig +++ b/core/modules/search/templates/search-result.html.twig @@ -53,7 +53,7 @@ * @endcode * * @see template_preprocess_search_result() - * @see template_process() + * @see template_preprocess() * * @ingroup themeable */ diff --git a/core/modules/system/templates/html.html.twig b/core/modules/system/templates/html.html.twig index f2d094e..6bdbe87 100644 --- a/core/modules/system/templates/html.html.twig +++ b/core/modules/system/templates/html.html.twig @@ -22,7 +22,6 @@ * in the head. * * @see template_preprocess_html() - * @see template_process_html() * * @ingroup themeable */ diff --git a/core/modules/system/templates/page.html.twig b/core/modules/system/templates/page.html.twig index 71b66f6..56fb931 100644 --- a/core/modules/system/templates/page.html.twig +++ b/core/modules/system/templates/page.html.twig @@ -58,7 +58,7 @@ * - page.footer: Items for the footer region. * * @see template_preprocess_page() - * @see template_process() + * @see template_preprocess() * @see template_process_page() * @see html.html.twig * diff --git a/core/modules/user/user.module b/core/modules/user/user.module index 5127a4c..348ded4 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -686,8 +686,6 @@ function user_template_preprocess_default_variables_alter(&$variables) { * Modules that make any changes to variables like 'name' or 'extra' must ensure * that the final string is safe to include directly in the output by using * check_plain() or filter_xss(). - * - * @see template_process_username() */ function template_preprocess_username(&$variables) { $account = $variables['account'] ?: drupal_anonymous_user(); @@ -748,7 +746,6 @@ function template_preprocess_username(&$variables) { * Drupal\Core\Template\Attribute class if not linking to the user's page. * * @see template_preprocess_username() - * @see template_process_username() */ function theme_username($variables) { if (isset($variables['link_path'])) { diff --git a/core/themes/seven/templates/page.html.twig b/core/themes/seven/templates/page.html.twig index d899393..6ef904c 100644 --- a/core/themes/seven/templates/page.html.twig +++ b/core/themes/seven/templates/page.html.twig @@ -60,7 +60,7 @@ * * @see template_preprocess_page() * @see seven_preprocess_page() - * @see template_process() + * @see template_preprocess() * @see template_process_page() * @see html.html.twig *