Formatting

Clean up Main.hs formatting; clarify language in parsing branch
This commit is contained in:
James Eversole
2024-12-19 19:08:56 -06:00
parent e5f3a53bcc
commit 602048dc53
2 changed files with 6 additions and 2 deletions

View File

@ -49,7 +49,7 @@ parseApplication = do
func <- parseAtomicBase
args <- many parseAtomic
case func of
TLeaf | not (null args) && all isTreeTerm args -> fail "Not an application, defer to Tree Calculus"
TLeaf | not (null args) && all isTreeTerm args -> fail "Defer to Tree Calculus"
_ -> return (SApp func args)
isTreeTerm :: SaplingAST -> Bool