From 9adf2cf4375df8077142cef06753b192c825ddff Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 31 Oct 2024 23:26:15 +0000 Subject: [PATCH] Docs: Correct `@param` tag in `untrailingslashit()` to match the parameter name. Follow-up to [54927]. Props justlevine. See #52217, #62281. Built from https://develop.svn.wordpress.org/trunk@59333 git-svn-id: http://core.svn.wordpress.org/trunk@58719 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 75efc33fd6..b579bcd324 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -2812,7 +2812,7 @@ function trailingslashit( $value ) { * * @since 2.2.0 * - * @param string $text Value from which trailing slashes will be removed. + * @param string $value Value from which trailing slashes will be removed. * @return string String without the trailing slashes. */ function untrailingslashit( $value ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 5bb17672ee..6e2b8b9b7b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59330'; +$wp_version = '6.8-alpha-59333'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.