@@ -104,14 +104,14 @@ export class BaseAuth<T extends AbstractAuthRequestHandler> implements BaseAuthI
104104 }
105105
106106 /**
107- * Verifies a JWT auth token. Returns a promise with the tokens claims.
107+ * Verifies a JWT auth token. Returns a promise with the token‘s claims.
108108 * Rejects the promise if the token cannot be verified.
109109 * If `checkRevoked` is set to true, first verifies whether the corresponding
110110 * user is disabled.
111- * If yes, an auth/user-disabled error is thrown.
111+ * If yes, an ` auth/user-disabled` error is thrown.
112112 * If no, verifies if the session corresponding to the ID token was revoked.
113113 * If the corresponding user's session was invalidated, an
114- * auth/id-token-revoked error is thrown.
114+ * ` auth/id-token-revoked` error is thrown.
115115 * If not specified the check is not applied.
116116 *
117117 * @param {string } idToken The JWT to verify.
@@ -510,15 +510,15 @@ export class BaseAuth<T extends AbstractAuthRequestHandler> implements BaseAuthI
510510 }
511511
512512 /**
513- * Verifies a Firebase session cookie. Returns a promise with the tokens claims.
513+ * Verifies a Firebase session cookie. Returns a promise with the token’s claims.
514514 * Rejects the promise if the cookie could not be verified.
515515 * If `checkRevoked` is set to true, first verifies whether the corresponding
516516 * user is disabled:
517- * If yes, an auth/user-disabled error is thrown.
517+ * If yes, an ` auth/user-disabled` error is thrown.
518518 * If no, verifies if the session corresponding to the session cookie was
519519 * revoked.
520520 * If the corresponding user's session was invalidated, an
521- * auth/session-cookie-revoked error is thrown.
521+ * ` auth/session-cookie-revoked` error is thrown.
522522 * If not specified the check is not performed.
523523 *
524524 * @param {string } sessionCookie The session cookie to verify.
@@ -797,7 +797,7 @@ export class TenantAwareAuth
797797 * Verifies a JWT auth token. Returns a promise with the tokens claims. Rejects
798798 * the promise if the token could not be verified. If checkRevoked is set to true,
799799 * verifies if the session corresponding to the ID token was revoked. If the corresponding
800- * user's session was invalidated, an auth/id-token-revoked error is thrown. If not specified
800+ * user's session was invalidated, an ` auth/id-token-revoked` error is thrown. If not specified
801801 * the check is not applied.
802802 *
803803 * @param {string } idToken The JWT to verify.
@@ -848,7 +848,7 @@ export class TenantAwareAuth
848848 * Verifies a Firebase session cookie. Returns a promise with the tokens claims. Rejects
849849 * the promise if the token could not be verified. If checkRevoked is set to true,
850850 * verifies if the session corresponding to the session cookie was revoked. If the corresponding
851- * user's session was invalidated, an auth/session-cookie-revoked error is thrown. If not
851+ * user's session was invalidated, an ` auth/session-cookie-revoked` error is thrown. If not
852852 * specified the check is not performed.
853853 *
854854 * @param {string } sessionCookie The session cookie to verify.
0 commit comments