[PM-31445] Fix minor KDoc typos and wording issues. (#6441)

This commit is contained in:
Ruyut
2026-01-31 03:15:03 +08:00
committed by GitHub
parent 92ba38c831
commit fe5b61bf25
2 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ sealed class CreateAuthRequestResult {
) : CreateAuthRequestResult()
/**
* Models the data returned when a auth request has been approved.
* Models the data returned when an auth request has been approved.
*/
data class Success(
val authRequest: AuthRequest,
@@ -21,7 +21,7 @@ sealed class CreateAuthRequestResult {
) : CreateAuthRequestResult()
/**
* There was a generic error getting the user's auth requests.
* There was a generic error creating the auth request.
*/
data class Error(
val error: Throwable,

View File

@@ -54,7 +54,7 @@ val CipherView.isActiveWithFido2Credentials: Boolean
get() = deletedDate == null && !(login?.fido2Credentials.isNullOrEmpty())
/**
* Returns true when the cipher is not deleted and contains at least one Pasword credential.
* Returns true when the cipher is not deleted and contains at least one Password credential.
*/
val CipherView.isActiveWithPasswordCredentials: Boolean
get() = deletedDate == null && !(login?.password.isNullOrEmpty())