From 8b488cb1ce592d50949a75eb6cdf0ea13c82a3bd Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Mon, 25 Apr 2022 13:03:15 +0000 Subject: [PATCH] Docs: Use third-person singular verbs for function descriptions in `WP_User_Query` Class, as per docs standards. See #54729. git-svn-id: https://develop.svn.wordpress.org/trunk@53256 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-user-query.php | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/wp-includes/class-wp-user-query.php b/src/wp-includes/class-wp-user-query.php index 6d88b4a855..8d22a58e87 100644 --- a/src/wp-includes/class-wp-user-query.php +++ b/src/wp-includes/class-wp-user-query.php @@ -124,7 +124,7 @@ class WP_User_Query { } /** - * Prepare the query variables. + * Prepares the query variables. * * @since 3.1.0 * @since 4.1.0 Added the ability to order by the `include` value. @@ -751,7 +751,7 @@ class WP_User_Query { } /** - * Execute the query, with the current variables. + * Executes the query, with the current variables. * * @since 3.1.0 * @@ -834,7 +834,7 @@ class WP_User_Query { } /** - * Retrieve query variable. + * Retrieves query variable. * * @since 3.5.0 * @@ -850,7 +850,7 @@ class WP_User_Query { } /** - * Set query variable. + * Sets query variable. * * @since 3.5.0 * @@ -862,7 +862,7 @@ class WP_User_Query { } /** - * Used internally to generate an SQL string for searching across multiple columns + * Used internally to generate an SQL string for searching across multiple columns. * * @since 3.1.0 * @@ -894,7 +894,7 @@ class WP_User_Query { } /** - * Return the list of users. + * Returns the list of users. * * @since 3.1.0 * @@ -905,7 +905,7 @@ class WP_User_Query { } /** - * Return the total number of users for the current query. + * Returns the total number of users for the current query. * * @since 3.1.0 * @@ -916,7 +916,7 @@ class WP_User_Query { } /** - * Parse and sanitize 'orderby' keys passed to the user query. + * Parses and sanitizes 'orderby' keys passed to the user query. * * @since 4.2.0 * @@ -975,7 +975,7 @@ class WP_User_Query { } /** - * Parse an 'order' query variable and cast it to ASC or DESC as necessary. + * Parses an 'order' query variable and casts it to ASC or DESC as necessary. * * @since 4.2.0 * @@ -995,7 +995,7 @@ class WP_User_Query { } /** - * Make private properties readable for backward compatibility. + * Makes private properties readable for backward compatibility. * * @since 4.0.0 * @@ -1009,7 +1009,7 @@ class WP_User_Query { } /** - * Make private properties settable for backward compatibility. + * Makes private properties settable for backward compatibility. * * @since 4.0.0 * @@ -1024,7 +1024,7 @@ class WP_User_Query { } /** - * Make private properties checkable for backward compatibility. + * Makes private properties checkable for backward compatibility. * * @since 4.0.0 * @@ -1038,7 +1038,7 @@ class WP_User_Query { } /** - * Make private properties un-settable for backward compatibility. + * Makes private properties un-settable for backward compatibility. * * @since 4.0.0 * @@ -1051,7 +1051,7 @@ class WP_User_Query { } /** - * Make private/protected methods readable for backward compatibility. + * Makes private/protected methods readable for backward compatibility. * * @since 4.0.0 *