diff --git a/wp-includes/date.php b/wp-includes/date.php index 51c5d84b9d..b1fd0054fa 100644 --- a/wp-includes/date.php +++ b/wp-includes/date.php @@ -78,11 +78,10 @@ class WP_Date_Query { * the $default_column parameter. Default 'post_date'. Accepts 'post_date', * 'post_date_gmt', 'post_modified','post_modified_gmt', 'comment_date', * 'comment_date_gmt'. - * @type string $compare Optional. The comparison operator. - * Accepts '=', '!=', '>', '>=', '<', '<=', 'IN', 'NOT IN'. Default '='. - * 'BETWEEN', 'NOT BETWEEN'. - * @type string $relation Optional. The boolean relationship between the date queries. - * Accepts 'OR', 'AND'. Default 'OR'. + * @type string $compare Optional. The comparison operator. Default '='. + * Accepts '=', '!=', '>', '>=', '<', '<=', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN'. + * @type string $relation Optional. The boolean relationship between the date queries. Default 'OR'. + * Accepts 'OR', 'AND'. * @type array { * Optional. An array of first-order clause parameters, or another fully-formed date query. * diff --git a/wp-includes/version.php b/wp-includes/version.php index a9f2f2f798..a23e17d8ed 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31056'; +$wp_version = '4.2-alpha-31057'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.