Docs: Convert "Application Passwords" to lowercase in WP_Application_Passwords docblocks, for better consistency.

See #55646.

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


git-svn-id: http://core.svn.wordpress.org/trunk@53232 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-07-06 11:55:11 +00:00
parent 09f8333b0b
commit 8de9cf1d8b
2 changed files with 4 additions and 4 deletions

View File

@ -41,9 +41,9 @@ class WP_Application_Passwords {
const PW_LENGTH = 24;
/**
* Checks if Application Passwords are being used by the site.
* Checks if application passwords are being used by the site.
*
* This returns true if at least one Application Password has ever been created.
* This returns true if at least one application password has ever been created.
*
* @since 5.6.0
*
@ -312,7 +312,7 @@ class WP_Application_Passwords {
return true;
}
// Specified Application Password not found!
// Specified application password not found!
return new WP_Error( 'application_password_not_found', __( 'Could not find an application password with that id.' ) );
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.1-alpha-53672';
$wp_version = '6.1-alpha-53673';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.