Skip to content

Commit 8601694

Browse files
authored
fix(authenticator): Rename AuthenticatorMessage.Information to AuthenticatorMessage.Info (#41)
1 parent 0a699e4 commit 8601694

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

authenticator/src/main/java/com/amplifyframework/ui/authenticator/util/AuthenticatorMessage.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ interface AuthenticatorMessage {
3939
/**
4040
* Indicates an informational update for the user, such as the successful completion of an async process.
4141
*/
42-
interface Information : AuthenticatorMessage
42+
interface Info : AuthenticatorMessage
4343

4444
/**
4545
* Indicates an error occurred. You may inspect the [cause] for more information.
@@ -71,14 +71,14 @@ internal abstract class AuthenticatorMessageImpl(
7171
*/
7272
internal object PasswordResetMessage :
7373
AuthenticatorMessageImpl(R.string.amplify_ui_authenticator_message_password_reset),
74-
AuthenticatorMessage.Information
74+
AuthenticatorMessage.Info
7575

7676
/**
7777
* A confirmation code was sent to the user.
7878
*/
7979
internal object CodeSentMessage :
8080
AuthenticatorMessageImpl(R.string.amplify_ui_authenticator_message_code_sent),
81-
AuthenticatorMessage.Information
81+
AuthenticatorMessage.Info
8282

8383
/**
8484
* The user cannot reset their password because their account is in an invalid state.

0 commit comments

Comments
 (0)