diff --git a/src/wp-includes/class-wp-comment-query.php b/src/wp-includes/class-wp-comment-query.php
index e2ea55a22c..98104ced05 100644
a
|
b
|
class WP_Comment_Query { |
329 | 329 | * |
330 | 330 | * @since 4.2.0 Extracted from WP_Comment_Query::query(). |
331 | 331 | * |
332 | | * @param string|array $query WP_Comment_Query arguments. See WP_Comment_Query::__construct(). |
| 332 | * @param string|array $query WP_Comment_Query arguments. See WP_Comment_Query::__construct() for information on accepted arguments. |
333 | 333 | */ |
334 | 334 | public function parse_query( $query = '' ) { |
335 | 335 | if ( empty( $query ) ) { |
diff --git a/src/wp-includes/class-wp-network-query.php b/src/wp-includes/class-wp-network-query.php
index 7199ec03a1..1e0934257d 100644
a
|
b
|
class WP_Network_Query { |
145 | 145 | * |
146 | 146 | * @since 4.6.0 |
147 | 147 | * |
148 | | * @param string|array $query WP_Network_Query arguments. See WP_Network_Query::__construct() |
| 148 | * @param string|array $query WP_Network_Query arguments. See WP_Network_Query::__construct() for accepted arguments. |
149 | 149 | */ |
150 | 150 | public function parse_query( $query = '' ) { |
151 | 151 | if ( empty( $query ) ) { |
diff --git a/src/wp-includes/class-wp-term-query.php b/src/wp-includes/class-wp-term-query.php
index 1fa73d48ab..0a66771384 100644
a
|
b
|
class WP_Term_Query { |
241 | 241 | * |
242 | 242 | * @since 4.6.0 |
243 | 243 | * |
244 | | * @param string|array $query WP_Term_Query arguments. See WP_Term_Query::__construct() |
| 244 | * @param string|array $query WP_Term_Query arguments. See WP_Term_Query::__construct() for information on additional accepted arguments. |
245 | 245 | */ |
246 | 246 | public function parse_query( $query = '' ) { |
247 | 247 | if ( empty( $query ) ) { |