Skip to content

Commit

Permalink
Fixes for typos & formatting in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DellaBitta committed Jan 14, 2025
1 parent d6e1917 commit 4fc151f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/firebaseServerApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ export class FirebaseServerAppImpl
...serverConfig
};

// Ensure that the current time is within the authIdtoken window of validity.
// Ensure that the current time is within the `authIdtoken` window of validity.
if (this._serverConfig.authIdToken) {
validateTokenTTL(this._serverConfig.authIdToken, 'authIdToken');
}

// Ensure that the current time is within the appCheckToken window of validity.
// Ensure that the current time is within the `appCheckToken` window of validity.
if (this._serverConfig.appCheckToken) {
validateTokenTTL(this._serverConfig.appCheckToken, 'appCheckToken');
}
Expand Down
4 changes: 2 additions & 2 deletions packages/app/src/public-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ export interface FirebaseServerAppSettings
authIdToken?: string;

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

Expand Down

0 comments on commit 4fc151f

Please sign in to comment.