@@ -259,7 +259,7 @@ public Void call() throws Exception {
259259 * <p>While this will revoke all sessions for a specified user and disable any new ID tokens for
260260 * existing sessions from getting minted, existing ID tokens may remain active until their
261261 * natural expiration (one hour).
262- * To verify that ID tokens are revoked, use `verifyIdToken(idToken, true)` .
262+ * To verify that ID tokens are revoked, use {@link verifyIdTokenAsync(String, boolean)} .
263263 *
264264 * @param uid The user id for which tokens are revoked.
265265 * @return An {@code ApiFuture} which will complete successfully or if updating the user fails,
@@ -286,7 +286,7 @@ public ApiFuture<Void> revokeRefreshTokensAsync(String uid) {
286286 * If the token is invalid, the future throws an exception indicating the failure.
287287 *
288288 * <p>This does not check whether a token has been revoked.
289- * See ` verifyIdTokenAsync(token, checkRevoked)` below.
289+ * See {@link verifyIdTokenAsync(String, boolean)} below.
290290 *
291291 * @param token A Firebase ID Token to verify and parse.
292292 * @return An {@code ApiFuture} which will complete successfully with the parsed token, or
@@ -308,7 +308,7 @@ public ApiFuture<FirebaseToken> verifyIdTokenAsync(final String token) {
308308 * associated with this FirebaseAuth instance (which by default is extracted from your service
309309 * account)
310310 *
311- * <p>If ` checkRevoked` is true, additionally checks if the token has been revoked.
311+ * <p>If {@code checkRevoked} is true, additionally checks if the token has been revoked.
312312 *
313313 * <p>If the token is valid, and not revoked, the returned Future will complete successfully and
314314 * provide a parsed version of the token from which the UID and other claims in the token can be
0 commit comments