Docs: Use third-person singular verbs for function descriptions in `WP_User_Query` Class, as per docs standards.

See #54729.

Built from https://develop.svn.wordpress.org/trunk@53256


git-svn-id: http://core.svn.wordpress.org/trunk@52845 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-04-25 13:05:10 +00:00
parent 120f9b9eae
commit 8f93e5f2dd
2 changed files with 15 additions and 15 deletions

View File

@ -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
*

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.0-beta2-53255';
$wp_version = '6.0-beta2-53256';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.