diff options
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Parsing.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Parsing.hs b/src/Text/Pandoc/Parsing.hs index 72ae828f0..71b16b7ca 100644 --- a/src/Text/Pandoc/Parsing.hs +++ b/src/Text/Pandoc/Parsing.hs @@ -764,9 +764,9 @@ gridTableFooter = blanklines --- -- | Parse a string with a given parser and state. -readWith :: Parser [Char] ParserState a -- ^ parser - -> ParserState -- ^ initial state - -> [Char] -- ^ input +readWith :: Parser [Char] st a -- ^ parser + -> st -- ^ initial state + -> [Char] -- ^ input -> a readWith parser state input = case runParser parser state "source" input of |