Skip to content

Commit 969d5e0

Browse files
authored
Making some minor style/grammar edits. (#4965)
1 parent 61b69aa commit 969d5e0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/firebase/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ declare namespace firebase {
10261026
/** Always set to PROJECT_ID */
10271027
aud: string;
10281028

1029-
/** The user's unique id */
1029+
/** The user's unique ID */
10301030
sub: string;
10311031

10321032
/** The token issue time, in seconds since epoch */
@@ -1035,7 +1035,7 @@ declare namespace firebase {
10351035
/** The token expiry time, normally 'iat' + 3600 */
10361036
exp: number;
10371037

1038-
/** The user's unique id, must be equal to 'sub' */
1038+
/** The user's unique ID. Must be equal to 'sub' */
10391039
user_id: string;
10401040

10411041
/** The time the user authenticated, normally 'iat' */

packages/util/src/emulator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface FirebaseIdToken {
4040
// Always set to PROJECT_ID
4141
aud: string;
4242

43-
// The user's unique id
43+
// The user's unique ID
4444
sub: string;
4545

4646
// The token issue time, in seconds since epoch
@@ -49,7 +49,7 @@ interface FirebaseIdToken {
4949
// The token expiry time, normally 'iat' + 3600
5050
exp: number;
5151

52-
// The user's unique id, must be equal to 'sub'
52+
// The user's unique ID. Must be equal to 'sub'
5353
user_id: string;
5454

5555
// The time the user authenticated, normally 'iat'

0 commit comments

Comments
 (0)