From 9e67ba895de6ade8d1ce2970b374a456ca9944f0 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 27 Mar 2019 17:09:52 +0000 Subject: [PATCH] Docs: Correct some documentation typos. See #46543 Built from https://develop.svn.wordpress.org/trunk@45035 git-svn-id: http://core.svn.wordpress.org/trunk@44844 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/wp-db.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index ec1e0d7f6f..c4f42267ca 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-45034'; +$wp_version = '5.2-alpha-45035'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index b1c6ddf52b..1bd8aa2611 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -2041,7 +2041,7 @@ class wpdb { /* * Add the filter to remove the placeholder escaper. Uses priority 0, so that anything - * else attached to this filter will recieve the query with the placeholder string removed. + * else attached to this filter will receive the query with the placeholder string removed. */ if ( ! has_filter( 'query', array( $this, 'remove_placeholder_escape' ) ) ) { add_filter( 'query', array( $this, 'remove_placeholder_escape' ), 0 );