string-class 0.1.5.0 → 0.1.5.1
raw patch · 2 files changed
+5/−5 lines, 2 files
Files
- src/Data/String/Class.hs +3/−3
- string-class.cabal +2/−2
src/Data/String/Class.hs view
@@ -335,7 +335,7 @@ -- | Minimal complete definition: 'hGetContents', 'hGetLine', 'hPutStr', and 'hPutStrLn' class StringRWIO s where- -- * Handles+ --- Handles -- | Read n bytes *or* characters, depending on the implementation into a -- ByteString, directly from the specified Handle@@ -357,7 +357,7 @@ -- string to an efficient type for which 'hPutStrLn' is atomic. hPutStrLn :: IO.Handle -> s -> IO () - -- * Special cases for standard input and output+ --- Special cases for standard input and output -- | Take a function of type Text -> Text as its argument --@@ -383,7 +383,7 @@ putStrLn :: s -> IO () putStrLn = hPutStrLn IO.stdout - -- *+ --- -- | Read a file and returns the contents of the file as a string --
string-class.cabal view
@@ -1,5 +1,5 @@ name: string-class-version: 0.1.5.0+version: 0.1.5.1 cabal-version: >= 1.10 build-type: Simple license: BSD3@@ -10,7 +10,7 @@ synopsis: String class library description: String class library category: Data, Text-tested-with: GHC == 7.0.1+tested-with: GHC == 7.0.2 library default-language: Haskell2010