diff --git a/SVGPath.cabal b/SVGPath.cabal
--- a/SVGPath.cabal
+++ b/SVGPath.cabal
@@ -1,7 +1,7 @@
 Name:             SVGPath
-Version:          1.0.1
+Version:          1.0.2
 Synopsis:         Parsing the path command from SVG
-Description:      Parsing the path command from SVG
+Description:      Parsing the path command from SVG
 category:         Graphics
 License:          BSD3
 License-file:     LICENSE
@@ -9,11 +9,11 @@
 Maintainer:       Tillmann.Vogt@rwth-aachen.de
 Build-Type:       Simple
 Cabal-Version:    >=1.6
-
-Library
+
+Library
     hs-source-dirs: src
     build-depends:
         base == 4.*,
-        parsec == 2.1.*
+        parsec == 3.1.*
     exposed-modules:
         Graphics.SVG.ReadPath
diff --git a/src/Graphics/SVG/ReadPath.hs b/src/Graphics/SVG/ReadPath.hs
--- a/src/Graphics/SVG/ReadPath.hs
+++ b/src/Graphics/SVG/ReadPath.hs
@@ -59,7 +59,7 @@
   A_rel
   deriving Show
 
--- | convert a SVG path string into alist of commands
+-- | convert a SVG path string into a list of commands
 pathFromString :: String -> IO [PathCommand]
 pathFromString str
   = do{ case (parse path "" str) of
