From 0064fdd4bd7401d7e88d42bcffa5771542fa3394 Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Fri, 2 Jun 2023 10:56:43 -0400 Subject: [PATCH] chore: update comment --- src/cmap/auth/mongodb_oidc/cache.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmap/auth/mongodb_oidc/cache.ts b/src/cmap/auth/mongodb_oidc/cache.ts index 3e74adf1ef..e23685b3bc 100644 --- a/src/cmap/auth/mongodb_oidc/cache.ts +++ b/src/cmap/auth/mongodb_oidc/cache.ts @@ -22,7 +22,7 @@ export abstract class ExpiringCacheEntry { } /** - * Get an expiration time in milliseconds past epoch. Defaults to immediate. + * Get an expiration time in milliseconds past epoch. */ private expirationTime(expiresInSeconds: number): number { return Date.now() + expiresInSeconds * 1000;