diff options
Diffstat (limited to 'libraries/base')
-rw-r--r-- | libraries/base/GHC/Read.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/GHC/Read.hs b/libraries/base/GHC/Read.hs index 75ccb0c5da..5c4a629676 100644 --- a/libraries/base/GHC/Read.hs +++ b/libraries/base/GHC/Read.hs @@ -205,8 +205,8 @@ class Read a where -- | The method 'readList' is provided to allow the programmer to -- give a specialised way of parsing lists of values. -- For example, this is used by the predefined 'Read' instance of - -- the 'Char' type, where values of type 'String' should be are - -- expected to use double quotes, rather than square brackets. + -- the 'Char' type, where values of type 'String' are expected to + -- use double quotes, rather than square brackets. readList :: ReadS [a] -- | Proposed replacement for 'readsPrec' using new-style parsers (GHC only). |