From b9a42d11d2aa3ab9213dc00bf2c5e698564bf461 Mon Sep 17 00:00:00 2001 From: limichange Date: Wed, 23 Oct 2024 13:01:13 +0800 Subject: [PATCH] docs: fix typo (#298) --- docs/content/docs/concepts/session-management.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/concepts/session-management.mdx b/docs/content/docs/concepts/session-management.mdx index b914c3f52a..bead809e93 100644 --- a/docs/content/docs/concepts/session-management.mdx +++ b/docs/content/docs/concepts/session-management.mdx @@ -27,7 +27,7 @@ import { betterAuth } from "better-auth" export const auth = betterAuth({ //... other config options session: { - expiresIn: 60 * 60 * 24 * 7 // 7 days, + expiresIn: 60 * 60 * 24 * 7, // 7 days updateAge: 60 * 60 * 24 // 1 day (every 1 day the session expiration is updated) } })