Docs: Correct a translator comment that was added in [59578].

See #62005

Built from https://develop.svn.wordpress.org/trunk@59603


git-svn-id: http://core.svn.wordpress.org/trunk@58988 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn
2025-01-14 11:38:24 +00:00
parent 08ffc54083
commit 7c245831e8
2 changed files with 2 additions and 2 deletions

View File

@@ -2605,7 +2605,7 @@ if ( ! function_exists( 'wp_hash' ) ) :
if ( ! in_array( $algo, hash_hmac_algos(), true ) ) {
throw new InvalidArgumentException(
sprintf(
/** translators: 1: Name of a cryptographic hash algorithm. 2: List of supported algorithms. */
/* translators: 1: Name of a cryptographic hash algorithm. 2: List of supported algorithms. */
__( 'Unsupported hashing algorithm: %1$s. Supported algorithms are: %2$s' ),
$algo,
implode( ', ', hash_hmac_algos() )

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.8-alpha-59602';
$wp_version = '6.8-alpha-59603';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.