diff --git a/src/Data/String/Class.hs b/src/Data/String/Class.hs
--- a/src/Data/String/Class.hs
+++ b/src/Data/String/Class.hs
@@ -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
     --
diff --git a/string-class.cabal b/string-class.cabal
--- a/string-class.cabal
+++ b/string-class.cabal
@@ -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
