From d1e97fac6ce72dc36c7c2963afc64f5ca5efe541 Mon Sep 17 00:00:00 2001 From: Carolina Nymark Date: Mon, 29 Jan 2024 14:37:25 +0100 Subject: [PATCH] Post navigation link: Coding standard fixes (#58380) Update an inline comment to follow the PHP inline documentation standards. --- packages/block-library/src/post-navigation-link/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/block-library/src/post-navigation-link/index.php b/packages/block-library/src/post-navigation-link/index.php index 69c9a3f39f8a7..5bbc87ef53771 100644 --- a/packages/block-library/src/post-navigation-link/index.php +++ b/packages/block-library/src/post-navigation-link/index.php @@ -99,12 +99,12 @@ function render_block_core_post_navigation_link( $attributes, $content ) { } } - /** + /* * The dynamic portion of the function name, `$navigation_type`, * Refers to the type of adjacency, 'next' or 'previous'. * - * @See https://developer.wordpress.org/reference/functions/get_previous_post_link/ - * @See https://developer.wordpress.org/reference/functions/get_next_post_link/ + * @see https://developer.wordpress.org/reference/functions/get_previous_post_link/ + * @see https://developer.wordpress.org/reference/functions/get_next_post_link/ */ $get_link_function = "get_{$navigation_type}_post_link";