Skip to content

Commit 2e63e51

Browse files
committed
Fix docs
1 parent a769fb1 commit 2e63e51

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+18
-321
lines changed
File renamed without changes.

β€Ždocs/examples/java/account/create-m-f-a-authenticator.mdβ€Ž

Lines changed: 0 additions & 23 deletions
This file was deleted.

β€Ždocs/examples/java/account/create-m-f-a-challenge.mdβ€Ž

Lines changed: 0 additions & 23 deletions
This file was deleted.

β€Ždocs/examples/java/account/create-m-f-a-recovery-codes.mdβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.
File renamed without changes.

β€Ždocs/examples/java/account/create-mfa-authenticator.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client client = new Client(context)
99

1010
Account account = new Account(client);
1111

12-
account.createMfaAuthenticator(
12+
account.createMFAAuthenticator(
1313
AuthenticatorType.TOTP, // type
1414
new CoroutineCallback<>((result, error) -> {
1515
if (error != null) {

β€Ždocs/examples/java/account/create-mfa-challenge.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client client = new Client(context)
99

1010
Account account = new Account(client);
1111

12-
account.createMfaChallenge(
12+
account.createMFAChallenge(
1313
AuthenticationFactor.EMAIL, // factor
1414
new CoroutineCallback<>((result, error) -> {
1515
if (error != null) {

β€Ždocs/examples/java/account/create-mfa-recovery-codes.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Client client = new Client(context)
88

99
Account account = new Account(client);
1010

11-
account.createMfaRecoveryCodes(new CoroutineCallback<>((result, error) -> {
11+
account.createMFARecoveryCodes(new CoroutineCallback<>((result, error) -> {
1212
if (error != null) {
1313
error.printStackTrace();
1414
return;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)