From 4fdd686e7b4394fa6137a21c8d9458bd7ba49b5a Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Sat, 20 Jan 2018 13:31:46 +0000 Subject: [PATCH] Formatting: Fix typo in inline documentation of `_deep_replace()`. Props ixkaito. Fixes #43134. git-svn-id: https://develop.svn.wordpress.org/trunk@42530 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/formatting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php index f9795fdaec..bf5ddbf91b 100644 --- a/src/wp-includes/formatting.php +++ b/src/wp-includes/formatting.php @@ -3995,7 +3995,7 @@ function format_for_editor( $text, $default_editor = null ) { * @param string|array $search The value being searched for, otherwise known as the needle. * An array may be used to designate multiple needles. * @param string $subject The string being searched and replaced on, otherwise known as the haystack. - * @return string The string with the replaced svalues. + * @return string The string with the replaced values. */ function _deep_replace( $search, $subject ) { $subject = (string) $subject;