From e9516cbfa5dfc1d5ef3099c07bfa7f8adfca481c Mon Sep 17 00:00:00 2001 From: Mihovil Ilakovac Date: Fri, 12 Jul 2024 16:50:11 +0200 Subject: [PATCH] Update comments --- waspc/src/Wasp/Psl/Parser/Model/Common.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/waspc/src/Wasp/Psl/Parser/Model/Common.hs b/waspc/src/Wasp/Psl/Parser/Model/Common.hs index a97273a450..9b174ddb44 100644 --- a/waspc/src/Wasp/Psl/Parser/Model/Common.hs +++ b/waspc/src/Wasp/Psl/Parser/Model/Common.hs @@ -21,9 +21,10 @@ import Wasp.Psl.Parser.Common symbol, ) --- | Parses body of the PSL (Prisma Schema Language) model, --- which is everything besides model keyword, name and braces: --- `model User { }`. +-- | Parses body of the PSL (Prisma Schema Language) model-like +-- block: (model, view, type) which is everything besides block keyword, +-- name and braces: +-- ` User { }`. body :: Parser Psl.Model.Common.Body body = Psl.Model.Common.Body <$> many1 element