From 47774776112815b1b997a68fc51cf3dabd3f44c2 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 14 Jan 2025 11:37:00 +0000 Subject: [PATCH] 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 --- src/wp-includes/pluggable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index 42a63fa63d..f4a8d8412e 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -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() )