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

See #55646.


git-svn-id: https://develop.svn.wordpress.org/trunk@53673 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras
2022-07-06 11:53:37 +00:00
parent d21847bed1
commit cea27f3ac1

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.' ) );
}