diff options
author | Einhard Leichtfuß <alguien@respiranto.de> | 2025-05-20 22:38:28 +0200 |
---|---|---|
committer | Einhard Leichtfuß <alguien@respiranto.de> | 2025-05-20 22:38:52 +0200 |
commit | ea3ba17104307fa1081ebe5ce7a815d9ef01fa11 (patch) | |
tree | 4ae8142b599282d4adc22eaed58bd76459c79fca | |
parent | dfd8f3bd6b12dc19cd5c4951d05b8a2ae18ceda6 (diff) |
Fix Haddock comment syntax
-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 |