diff --git a/src/cmap/auth/mongodb_oidc/cache.ts b/src/cmap/auth/mongodb_oidc/cache.ts index 3e74adf1eff..e23685b3bca 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;