From b02f4401e9fbdd3fd523877f47a9e9ed68d45d19 Mon Sep 17 00:00:00 2001
From: Lauri Eskola <lauri.eskola@acquia.com>
Date: Tue, 1 Aug 2023 18:44:20 +0300
Subject: [PATCH] Issue #3378088 by mstrelan, agunjan085: Invalid references to
 contextual_pre_render_links in contextual.api.php

(cherry picked from commit e72fa7b3759972013c3e943372baaae85722fbfe)
---
 core/modules/contextual/contextual.api.php | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/core/modules/contextual/contextual.api.php b/core/modules/contextual/contextual.api.php
index a797429ef370..0fe485a3bbdf 100644
--- a/core/modules/contextual/contextual.api.php
+++ b/core/modules/contextual/contextual.api.php
@@ -13,10 +13,11 @@
 /**
  * Alter a contextual links element before it is rendered.
  *
- * This hook is invoked by contextual_pre_render_links(). The renderable array
- * of #type 'contextual_links', containing the entire contextual links data that
- * is passed in by reference. Further links may be added or existing links can
- * be altered.
+ * This hook is invoked by
+ * \Drupal\contextual\Element\ContextualLinks::preRenderLinks(). The renderable
+ * array of #type 'contextual_links', containing the entire contextual links
+ * data that is passed in by reference. Further links may be added or existing
+ * links can be altered.
  *
  * @param $element
  *   A renderable array representing the contextual links.
@@ -28,7 +29,7 @@
  *
  * @see hook_contextual_links_alter()
  * @see hook_contextual_links_plugins_alter()
- * @see contextual_pre_render_links()
+ * @see \Drupal\contextual\Element\ContextualLinks::preRenderLinks()
  */
 function hook_contextual_links_view_alter(&$element, $items) {
   // Add another class to all contextual link lists to facilitate custom
-- 
GitLab