diff --git a/data-fix.cabal b/data-fix.cabal
--- a/data-fix.cabal
+++ b/data-fix.cabal
@@ -1,5 +1,5 @@
 Name:            data-fix
-Version:         0.0.7
+Version:         0.2.0
 Cabal-Version:   >= 1.10
 License:         BSD3
 License-file:    LICENSE
@@ -8,7 +8,7 @@
 Category:        Data
 Synopsis:        Fixpoint data types
 Build-Type:      Simple
-Description:     
+Description:
   Fixpoint types and recursion schemes. If you define your AST as
   fixpoint type, you get fold and unfold operations for free.
   .
@@ -30,5 +30,5 @@
 
   ghc-options: -Wall
 
-  Exposed-modules: 
+  Exposed-modules:
       Data.Fix
diff --git a/src/Data/Fix.hs b/src/Data/Fix.hs
--- a/src/Data/Fix.hs
+++ b/src/Data/Fix.hs
@@ -5,7 +5,7 @@
         DeriveGeneric,
         DeriveDataTypeable,
         StandaloneDeriving #-}
--- | Fix-point type. It allows to define generic recurion schemes.
+-- | Fix-point type. It allows to define generic recursion schemes.
 --
 -- > Fix f = f (Fix f)
 --
