Formatting: Fix typo in inline documentation of `_deep_replace()`.

Props ixkaito.
Fixes #43134.

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


git-svn-id: http://core.svn.wordpress.org/trunk@42359 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Pascal Birchler 2018-01-20 13:32:32 +00:00
parent 365025fb62
commit 5ecd978e74
2 changed files with 2 additions and 2 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;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42529';
$wp_version = '5.0-alpha-42530';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.