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

See #62005


git-svn-id: https://develop.svn.wordpress.org/trunk@59603 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2025-01-14 11:37:00 +00:00
parent 9d9d73cd9e
commit 4777477611

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() )