diff --git a/matrix-market-attoparsec.cabal b/matrix-market-attoparsec.cabal
--- a/matrix-market-attoparsec.cabal
+++ b/matrix-market-attoparsec.cabal
@@ -1,6 +1,6 @@
 name:                matrix-market-attoparsec
-version:             0.1.0.2
-synopsis:            Attoparsec parsers for the NIST Matrix Market format
+version:             0.1.0.3
+synopsis:            Parsing and serialization functions for the NIST Matrix Market format
 description:         Please see README.md
 homepage:            https://github.com/ocramz/matrix-market-attoparsec
 license:             GPL-3
diff --git a/src/Data/Matrix/MatrixMarket.hs b/src/Data/Matrix/MatrixMarket.hs
--- a/src/Data/Matrix/MatrixMarket.hs
+++ b/src/Data/Matrix/MatrixMarket.hs
@@ -11,15 +11,14 @@
 -- Attoparsec parser and serializer for the NIST MatrixMarket format. The parser logic originally appeared in `accelerate-examples` and it is reused here (courtesy of T.McDonell and the `accelerate` developers) with some amendments.
 -- 
 -- In this version:
-
+--
 -- *) Numbers are represented with Scientific notation instead of floating point
-
+--
 -- *) Parsing rules are a bit relaxed to accommodate various whitespace corner cases
 --
 -----------------------------------------------------------------------------
 module Data.Matrix.MatrixMarket
-       (module M,
-        -- * Load
+       (-- * Load
         readMatrix, readArray,
         -- * Save
         writeMatrix, writeArray,
