Docs: Various docblock improvements.

See #51800


git-svn-id: https://develop.svn.wordpress.org/trunk@49790 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2020-12-10 23:57:29 +00:00
parent 81b89682c3
commit 37f8276a18
11 changed files with 54 additions and 26 deletions

View File

@@ -1178,7 +1178,7 @@ function remove_query_arg( $key, $query = false ) {
*
* @since 4.4.0
*
* @return string[] An array of parameters to remove from the URL.
* @return string[] An array of query variable names to remove from the URL.
*/
function wp_removable_query_args() {
$removable_query_args = array(
@@ -1213,11 +1213,11 @@ function wp_removable_query_args() {
);
/**
* Filters the list of query variables to remove.
* Filters the list of query variable names to remove.
*
* @since 4.2.0
*
* @param string[] $removable_query_args An array of query variables to remove from a URL.
* @param string[] $removable_query_args An array of query variable names to remove from a URL.
*/
return apply_filters( 'removable_query_args', $removable_query_args );
}