From 019b27e4205c33977293548c7e9ba6993721aac7 Mon Sep 17 00:00:00 2001 From: Danny Grant Date: Sun, 26 May 2024 02:49:25 +0200 Subject: [PATCH] docs: fix typo in custom user attributes docs (#1579) --- docs/pages/basics/users.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/basics/users.md b/docs/pages/basics/users.md index 426c7e611..d7d8511a0 100644 --- a/docs/pages/basics/users.md +++ b/docs/pages/basics/users.md @@ -39,7 +39,7 @@ const id = generateRandomString(15, alphabet("a-z", "A-Z", "0-9")); ## Define user attributes -Defining custom session attributes requires 2 steps. First, add the required columns to the user table. You can type it by declaring the `Register.DatabaseUserAttributes` type (must be an interface). +Defining custom user attributes requires 2 steps. First, add the required columns to the user table. You can type it by declaring the `Register.DatabaseUserAttributes` type (must be an interface). ```ts declare module "lucia" {