aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Org
diff options
context:
space:
mode:
authorPete Ryland <pdr@pdr.cx>2019-07-02 10:29:34 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2019-07-02 10:29:34 +0200
commit24c781039fb280604eb1a73dd7de154db9e1e236 (patch)
tree4159323a476918f8eafca3048fadfcfe789d498f /src/Text/Pandoc/Readers/Org
parentb6c53553a929a8623ce56af961d28d5dcc4750d5 (diff)
downloadpandoc-24c781039fb280604eb1a73dd7de154db9e1e236.tar.gz
Fix redundant constraint warnings. (#5625)
Diffstat (limited to 'src/Text/Pandoc/Readers/Org')
-rw-r--r--src/Text/Pandoc/Readers/Org/Blocks.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Blocks.hs b/src/Text/Pandoc/Readers/Org/Blocks.hs
index 9c409510f..46ddc4257 100644
--- a/src/Text/Pandoc/Readers/Org/Blocks.hs
+++ b/src/Text/Pandoc/Readers/Org/Blocks.hs
@@ -772,7 +772,7 @@ bulletList = try $ do
fmap (B.bulletList . compactify) . sequence
<$> many1 (listItem (bulletListStart `indented` indent))
-indented :: Monad m => OrgParser m Int -> Int -> OrgParser m Int
+indented :: OrgParser m Int -> Int -> OrgParser m Int
indented indentedMarker minIndent = try $ do
n <- indentedMarker
guard (minIndent <= n)