Skip to content

Commit 4fc151f

Browse files
committed
Fixes for typos & formatting in comments
1 parent d6e1917 commit 4fc151f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/app/src/firebaseServerApp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ export class FirebaseServerAppImpl
9393
...serverConfig
9494
};
9595

96-
// Ensure that the current time is within the authIdtoken window of validity.
96+
// Ensure that the current time is within the `authIdtoken` window of validity.
9797
if (this._serverConfig.authIdToken) {
9898
validateTokenTTL(this._serverConfig.authIdToken, 'authIdToken');
9999
}
100100

101-
// Ensure that the current time is within the appCheckToken window of validity.
101+
// Ensure that the current time is within the `appCheckToken` window of validity.
102102
if (this._serverConfig.appCheckToken) {
103103
validateTokenTTL(this._serverConfig.appCheckToken, 'appCheckToken');
104104
}

packages/app/src/public-types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ export interface FirebaseServerAppSettings
197197
authIdToken?: string;
198198

199199
/**
200-
* An optional App Check token. If provided, the Firebase SDKs that use App Check will utilizze
201-
* this App Check token in lieu of requiring an instance of App Check to be initialized.
200+
* An optional App Check token. If provided, the Firebase SDKs that use App Check will utilize
201+
* this App Check token in place of requiring an instance of App Check to be initialized.
202202
*/
203203
appCheckToken?: string;
204204

0 commit comments

Comments
 (0)