From 5ecd978e7430bccf46208cc93a7ae70667ee591e Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Sat, 20 Jan 2018 13:32:32 +0000 Subject: [PATCH] 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 --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 8c2daae1f5..402506d2f2 100644 --- a/wp-includes/formatting.php +++ b/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; diff --git a/wp-includes/version.php b/wp-includes/version.php index eb86d0f630..8f73e195c8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.