i did not realise my fs is case insensitive

This commit is contained in:
crumbtoo
2024-01-10 14:33:03 -07:00
parent ec4902b2d4
commit ab2cb59526
5 changed files with 2 additions and 2 deletions

View File

@@ -128,8 +128,8 @@ standaloneOf = (<* eof)
partialExpr :: (OnFold) => Parser PartialExpr'
partialExpr = choice
[ try application
, Fix <$> infixExpr
[ try $ Fix <$> infixExpr
, application
]
<?> "expression"
where

View File