From 3d61f81536250f9b00e0ea70077a298651145b1a Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 13 Jun 2019 19:19:52 +0000 Subject: [PATCH] Docs: Fix typos in `Services_JSON` DocBlocks. Props mukesh27. Fixes #47401. Built from https://develop.svn.wordpress.org/trunk@45535 git-svn-id: http://core.svn.wordpress.org/trunk@45346 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-json.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-json.php b/wp-includes/class-json.php index 646c4b7a7c..a8c61c92e9 100644 --- a/wp-includes/class-json.php +++ b/wp-includes/class-json.php @@ -105,7 +105,7 @@ define('SERVICES_JSON_USE_TO_JSON', 64); * // create a new instance of Services_JSON * $json = new Services_JSON(); * - * // convert a complexe value to JSON notation, and send it to the browser + * // convert a complex value to JSON notation, and send it to the browser * $value = array('foo', 'bar', array(1, 2, 'baz'), array(3, array(4))); * $output = $json->encode($value); * @@ -208,7 +208,7 @@ class Services_JSON * * Normally should be handled by mb_convert_encoding, but * provides a slower PHP-only method for installations - * that lack the multibye string extension. + * that lack the multibyte string extension. * * @param string $utf8 UTF-8 character * @return string UTF-16 character diff --git a/wp-includes/version.php b/wp-includes/version.php index 8dccfa2763..129b346f13 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45532'; +$wp_version = '5.3-alpha-45535'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.