From 15d7a0cae139dc0fef9fb142dda8ff2c3f592d48 Mon Sep 17 00:00:00 2001 From: Parikshit Adhikari <83907047+parikshitadhikari@users.noreply.github.com> Date: Tue, 17 Oct 2023 21:20:33 +0545 Subject: [PATCH] fixed typos in waspc/docs/wasplang/src/index.tex (#1497) --- waspc/docs/wasplang/src/index.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/waspc/docs/wasplang/src/index.tex b/waspc/docs/wasplang/src/index.tex index b2dc63f74a..b3a3dab8c8 100644 --- a/waspc/docs/wasplang/src/index.tex +++ b/waspc/docs/wasplang/src/index.tex @@ -42,7 +42,7 @@ \subsection{Syntax} parse wasp, a quoter starting with \texttt{\{=tag} must contain all text until the first \texttt{tag=\}} or until the end of the input. -The nonterminals for strings, numbers, and identifers are not shown. +The nonterminals for strings, numbers, and identifiers are not shown. \subsection{Type System} @@ -308,7 +308,7 @@ \subsection{Extensibility} \subsection{Simplicity} While wasp is much more complex than old wasp, it is still fairly simple. -Noteably, control flow is absent. I wanted wasp to be as simple as possible +Notably, control flow is absent. I wanted wasp to be as simple as possible to make experimenting with its implementation less painful. Hopefully, when a good implementation is found, it will be flexible enough to bring in more complex features as needed. @@ -345,7 +345,7 @@ \subsection{Type checking} newtype PageParam = PageParam { name :: String , paramType :: ParamType } deriving (Generic) -newtype Page = Page { componenent :: Analyzer.Primitive.Import +newtype Page = Page { component :: Analyzer.Primitive.Import , authRequired :: Maybe Bool , params :: Maybe [PageParam] } deriving (Generic)