From 413333b5f02b55b99146ca154c8acc4e61073a19 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 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;