From f37038e6ac4b34c8e630284b88fb075267f455c7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 25 Apr 2013 23:10:36 +0000 Subject: [PATCH] Fix typo in phpdoc. props jcastaneda. fixes #24185. git-svn-id: http://core.svn.wordpress.org/trunk@24096 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/query.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index 40159da62d..9d6307e688 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -2,8 +2,8 @@ /** * WordPress Query API * - * The query API attempts to get which part of WordPress to the user is on. It - * also provides functionality to getting URL query information. + * The query API attempts to get which part of WordPress the user is on. It + * also provides functionality for getting URL query information. * * @link http://codex.wordpress.org/The_Loop More information on The Loop. * @@ -2809,7 +2809,7 @@ class WP_Query { function set_found_posts( $q, $limits ) { global $wpdb; - // Bail if posts is an empty array. Continue if posts is an empty string + // Bail if posts is an empty array. Continue if posts is an empty string, // null, or false to accommodate caching plugins that fill posts later. if ( $q['no_found_rows'] || ( is_array( $this->posts ) && ! $this->posts ) ) return;