Skip to content

Commit 80669a2

Browse files
committed
Docs: Add missing space and remove duplicate operator values in WP_Date_Query docblocks.
Props truptikanzariya. Fixes #64713. See #64224. git-svn-id: https://develop.svn.wordpress.org/trunk@61723 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 155e301 commit 80669a2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/wp-includes/class-wp-date-query.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ class WP_Date_Query {
9090
* or array of 'year', 'month', 'day' values.
9191
*
9292
* @type string $year The four-digit year. Default empty. Accepts any four-digit year.
93-
* @type string $month Optional when passing array.The month of the year.
93+
* @type string $month Optional when passing array. The month of the year.
9494
* Default (string:empty)|(array:1). Accepts numbers 1-12.
95-
* @type string $day Optional when passing array.The day of the month.
95+
* @type string $day Optional when passing array. The day of the month.
9696
* Default (string:empty)|(array:1). Accepts numbers 1-31.
9797
* }
9898
* @type string|array $after {
@@ -102,7 +102,7 @@ class WP_Date_Query {
102102
* @type string $year The four-digit year. Accepts any four-digit year. Default empty.
103103
* @type string $month Optional when passing array. The month of the year. Accepts numbers 1-12.
104104
* Default (string:empty)|(array:12).
105-
* @type string $day Optional when passing array.The day of the month. Accepts numbers 1-31.
105+
* @type string $day Optional when passing array. The day of the month. Accepts numbers 1-31.
106106
* Default (string:empty)|(array:last day of month).
107107
* }
108108
* @type string $column Optional. Used to add a clause comparing a column other than
@@ -111,8 +111,8 @@ class WP_Date_Query {
111111
* the {@see 'date_query_valid_columns'} filter for the list
112112
* of accepted values. Default is the value of top-level `$column`.
113113
* @type string $compare Optional. The comparison operator. Accepts '=', '!=', '>', '>=',
114-
* '<', '<=', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN'. 'IN',
115-
* 'NOT IN', 'BETWEEN', and 'NOT BETWEEN'. Comparisons support
114+
* '<', '<=', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN'.
115+
* Comparisons support
116116
* arrays in some time-related parameters. Default '='.
117117
* @type bool $inclusive Optional. Include results from dates specified in 'before' or
118118
* 'after'. Default false.

0 commit comments

Comments
 (0)