diff --git a/Text/ParserCombinators/Class.hs b/Text/ParserCombinators/Class.hs
--- a/Text/ParserCombinators/Class.hs
+++ b/Text/ParserCombinators/Class.hs
@@ -8,12 +8,11 @@
 
 -- | Parser class
 class (Monad p, Alternative p) => IsParser p where
-  type SymbolOf p -- ^ Type of symbols processed
+  type SymbolOf p -- Type of symbols processed
   satisfy :: (SymbolOf p -> Bool) -> p (SymbolOf p) -- ^ accept a symbol satisfying a given predicate
   look :: p [SymbolOf p] -- ^ access the stream of symbols from the current point
   label :: String -> p a -> p a -- ^ label the parser
   (<<|>) :: p a -> p a -> p a -- ^ Left-biased choice.
-  
 
 -------------------------------------------------------------------------
 -- derived parsers
diff --git a/parsek.cabal b/parsek.cabal
--- a/parsek.cabal
+++ b/parsek.cabal
@@ -1,5 +1,5 @@
 name:           parsek
-version:        1.0.0
+version:        1.0.1
 category:       Parsing
 synopsis:       Parallel Parsing Processes
 description: Koen Claessen's PPP, Modified.
