aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Man.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Readers/Man.hs')
-rw-r--r--src/Text/Pandoc/Readers/Man.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Man.hs b/src/Text/Pandoc/Readers/Man.hs
index c21fd00c3..ddf469222 100644
--- a/src/Text/Pandoc/Readers/Man.hs
+++ b/src/Text/Pandoc/Readers/Man.hs
@@ -131,7 +131,7 @@ parseTable = do
Left _ -> do
res' <- lift $ readWithMTokens blockstcell st ts'
case res' of
- Left _ -> fail "Could not parse table cell"
+ Left _ -> Prelude.fail "Could not parse table cell"
Right x -> do
modifyState $ \s -> s{ tableCellsPlain = False }
return x
@@ -492,4 +492,4 @@ skipUnknownMacro = do
ControlLine mkind _ pos -> do
report $ SkippedContent ('.':mkind) pos
return mempty
- _ -> fail "the impossible happened"
+ _ -> Prelude.fail "the impossible happened"