From b5d2399b324f70ba592abd90a8558f0d9da4933b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Poullain?= Date: Mon, 26 Aug 2024 15:09:46 +0200 Subject: [PATCH] [Docs] Fix typo --- docs/docs/authentication/user-class.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/docs/authentication/user-class.md b/docs/docs/authentication/user-class.md index dbd26ba681..78c39d621c 100644 --- a/docs/docs/authentication/user-class.md +++ b/docs/docs/authentication/user-class.md @@ -37,8 +37,7 @@ import { User } from './src/app/entities'; async function main() { const user = new User(); user.foo = 1; - await user.save(); 1 - }); + await user.save(); } ```