Docs: Correct some documentation typos.

See #46543


git-svn-id: https://develop.svn.wordpress.org/trunk@45035 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2019-03-27 17:08:04 +00:00
parent b2f0f4d2db
commit 6a3bab9848
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -226,7 +226,7 @@ abstract class WP_HTTP_UnitTestCase extends WP_UnitTestCase {
* @ticket 11888
*/
function test_send_headers() {
// Test that the headers sent are recieved by the server
// Test that the headers sent are received by the server
$headers = array(
'test1' => 'test',
'test2' => 0,