Docs: Use more appropriate variable names in the inline docs for action and filter parameters.

See #49572

git-svn-id: https://develop.svn.wordpress.org/trunk@48585 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2020-07-23 19:04:38 +00:00
parent c0d3d7627b
commit b6046636f0
5 changed files with 8 additions and 8 deletions

View File

@@ -2319,8 +2319,8 @@ function get_password_reset_key( $user ) {
*
* @since 2.7.0
*
* @param bool $allow Whether to allow the password to be reset. Default true.
* @param int $user_data->ID The ID of the user attempting to reset a password.
* @param bool $allow Whether to allow the password to be reset. Default true.
* @param int $ID The ID of the user attempting to reset a password.
*/
$allow = apply_filters( 'allow_password_reset', $allow, $user->ID );