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(); } ```