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
This commit is contained in:
Pascal Birchler 2018-01-20 13:31:46 +00:00
parent 29bc3920be
commit 4fdd686e7b
1 changed files with 1 additions and 1 deletions

View File

@ -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;