[project @ 2003-08-01 09:59:04 by ross]
authorross <unknown>
Fri, 1 Aug 2003 09:59:04 +0000 (09:59 +0000)
committerross <unknown>
Fri, 1 Aug 2003 09:59:04 +0000 (09:59 +0000)
tiny doc fix

Text/ParserCombinators/ReadP.hs

index c05b983..654eda0 100644 (file)
@@ -275,7 +275,7 @@ readP_to_S :: ReadP a -> ReadS a
 -- ^ Converts a parser into a Haskell ReadS-style function.
 --   This is the main way in which you can \"run\" a 'ReadP' parser:
 --   the expanded type is
--- @ readP_to_S :: ReadP a -> String -> [(String,String)] @
+-- @ readP_to_S :: ReadP a -> String -> [(a,String)] @
 readP_to_S (R f) = run (f return)
 
 readS_to_P :: ReadS a -> ReadP a