Skip to content

Commit 92e2279

Browse files
authored
spellcheck identify (#7269)
1 parent e0551fa commit 92e2279

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

docs-devsite/auth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Firebase Authentication
5555
| <b>function(user...)</b> |
5656
| [deleteUser(user)](./auth.md#deleteuser) | Deletes and signs out the user. |
5757
| [getIdToken(user, forceRefresh)](./auth.md#getidtoken) | Returns a JSON Web Token (JWT) used to identify the user to a Firebase service. |
58-
| [getIdTokenResult(user, forceRefresh)](./auth.md#getidtokenresult) | Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service. |
58+
| [getIdTokenResult(user, forceRefresh)](./auth.md#getidtokenresult) | Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service. |
5959
| [linkWithCredential(user, credential)](./auth.md#linkwithcredential) | Links the user account with the given credentials. |
6060
| [linkWithPhoneNumber(user, phoneNumber, appVerifier)](./auth.md#linkwithphonenumber) | Links the user account with the given phone number. |
6161
| [linkWithPopup(user, provider, resolver)](./auth.md#linkwithpopup) | Links the authenticated provider to the user account using a pop-up based OAuth flow. |
@@ -1156,7 +1156,7 @@ Promise&lt;string&gt;
11561156

11571157
## getIdTokenResult()
11581158

1159-
Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
1159+
Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
11601160

11611161
Returns the current token if it has not expired or if it will not expire in the next five minutes. Otherwise, this will refresh the token and return a new one.
11621162

docs-devsite/auth.user.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface User extends UserInfo
3636
| --- | --- |
3737
| [delete()](./auth.user.md#userdelete) | Deletes and signs out the user. |
3838
| [getIdToken(forceRefresh)](./auth.user.md#usergetidtoken) | Returns a JSON Web Token (JWT) used to identify the user to a Firebase service. |
39-
| [getIdTokenResult(forceRefresh)](./auth.user.md#usergetidtokenresult) | Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service. |
39+
| [getIdTokenResult(forceRefresh)](./auth.user.md#usergetidtokenresult) | Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service. |
4040
| [reload()](./auth.user.md#userreload) | Refreshes the user, if signed in. |
4141
| [toJSON()](./auth.user.md#usertojson) | Returns a JSON-serializable representation of this object. |
4242
@@ -154,7 +154,7 @@ Promise&lt;string&gt;
154154
155155
## User.getIdTokenResult()
156156
157-
Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
157+
Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
158158
159159
Returns the current token if it has not expired or if it will not expire in the next five minutes. Otherwise, this will refresh the token and return a new one.
160160

packages/auth/src/core/action_code_url.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('core/action_code_url', () => {
4242
});
4343

4444
context('operation', () => {
45-
it('should identitfy EMAIL_SIGNIN', () => {
45+
it('should identify EMAIL_SIGNIN', () => {
4646
const actionLink =
4747
'https://www.example.com/finishSignIn?' +
4848
'oobCode=CODE&mode=signIn&apiKey=API_KEY&' +
@@ -53,7 +53,7 @@ describe('core/action_code_url', () => {
5353
);
5454
});
5555

56-
it('should identitfy VERIFY_AND_CHANGE_EMAIL', () => {
56+
it('should identify VERIFY_AND_CHANGE_EMAIL', () => {
5757
const actionLink =
5858
'https://www.example.com/finishSignIn?' +
5959
'oobCode=CODE&mode=verifyAndChangeEmail&apiKey=API_KEY&' +
@@ -64,7 +64,7 @@ describe('core/action_code_url', () => {
6464
);
6565
});
6666

67-
it('should identitfy VERIFY_EMAIL', () => {
67+
it('should identify VERIFY_EMAIL', () => {
6868
const actionLink =
6969
'https://www.example.com/finishSignIn?' +
7070
'oobCode=CODE&mode=verifyEmail&apiKey=API_KEY&' +
@@ -75,7 +75,7 @@ describe('core/action_code_url', () => {
7575
);
7676
});
7777

78-
it('should identitfy RECOVER_EMAIL', () => {
78+
it('should identify RECOVER_EMAIL', () => {
7979
const actionLink =
8080
'https://www.example.com/finishSignIn?' +
8181
'oobCode=CODE&mode=recoverEmail&apiKey=API_KEY&' +
@@ -86,7 +86,7 @@ describe('core/action_code_url', () => {
8686
);
8787
});
8888

89-
it('should identitfy PASSWORD_RESET', () => {
89+
it('should identify PASSWORD_RESET', () => {
9090
const actionLink =
9191
'https://www.example.com/finishSignIn?' +
9292
'oobCode=CODE&mode=resetPassword&apiKey=API_KEY&' +
@@ -97,7 +97,7 @@ describe('core/action_code_url', () => {
9797
);
9898
});
9999

100-
it('should identitfy REVERT_SECOND_FACTOR_ADDITION', () => {
100+
it('should identify REVERT_SECOND_FACTOR_ADDITION', () => {
101101
const actionLink =
102102
'https://www.example.com/finishSignIn?' +
103103
'oobCode=CODE&mode=revertSecondFactorAddition&apiKey=API_KEY&' +

packages/auth/src/core/user/id_token_result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function getIdToken(user: User, forceRefresh = false): Promise<string> {
4141
}
4242

4343
/**
44-
* Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
44+
* Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
4545
*
4646
* @remarks
4747
* Returns the current token if it has not expired or if it will not expire in the next five

packages/auth/src/model/public_types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ export interface User extends UserInfo {
10091009
*/
10101010
getIdToken(forceRefresh?: boolean): Promise<string>;
10111011
/**
1012-
* Returns a deserialized JSON Web Token (JWT) used to identitfy the user to a Firebase service.
1012+
* Returns a deserialized JSON Web Token (JWT) used to identify the user to a Firebase service.
10131013
*
10141014
* @remarks
10151015
* Returns the current token if it has not expired or if it will not expire in the next five

0 commit comments

Comments
 (0)