diff options
-rw-r--r-- | src/Language/SimpleShell/Parser/Expr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Language/SimpleShell/Parser/Expr.hs b/src/Language/SimpleShell/Parser/Expr.hs index cabf522..06d6624 100644 --- a/src/Language/SimpleShell/Parser/Expr.hs +++ b/src/Language/SimpleShell/Parser/Expr.hs @@ -79,7 +79,7 @@ strongTermP_ isBoring = not . (`elem` "()\"" ++ commentFirstChars) --- | Parse "strong" term with fixed type. +-- | Parse strong term with fixed type. strongTermP' :: String -> SimpleType -> Parser Expr strongTermP' errMsg t = forceType t strongTermP <|> fail errMsg |