[project @ 2004-07-23 11:34:31 by ross]
[haskell-directory.git] / GHC / Read.lhs
index 2b9c448..1e213b5 100644 (file)
@@ -175,6 +175,7 @@ lexLitChar = readP_to_S (do { (s, _) <- P.gather L.lexChar ;
 readLitChar :: ReadS Char      -- As defined by H98
 readLitChar = readP_to_S L.lexChar
 
+-- | Reads a non-empty string of decimal digits.
 lexDigits :: ReadS String
 lexDigits = readP_to_S (P.munch1 isDigit)