Skip to content

Commit b5fd29c

Browse files
authored
docs(auth, mfa): fix example code typo (#7569)
1 parent d5b66ca commit b5fd29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/auth/multi-factor-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ can complete the process:
4545
```js
4646
const cred = auth.PhoneAuthProvider.credential(verificationId, verificationCode);
4747
const multiFactorAssertion = auth.PhoneMultiFactorGenerator.assertion(cred);
48-
await multiFactorUser.enroll(multiFactorAssertion, 'Optional display name for the user);
48+
await multiFactorUser.enroll(multiFactorAssertion, 'Optional display name for the user');
4949
```
5050

5151
You can inspect [`User#multiFactor`](/reference/auth/user#multiFactor) for

0 commit comments

Comments
 (0)