diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,8 @@
-#
+# 0.3.0.1
+
+* Fix documentation
+
+# 0.3
 
 * Added `Import` to `RType`.
 * Added an rtype field to `Delete`.
diff --git a/refact.cabal b/refact.cabal
--- a/refact.cabal
+++ b/refact.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                refact
-version:             0.3.0.0
+version:             0.3.0.1
 synopsis:            Specify refactorings to perform with apply-refact
 description:         This library provides a datatype which can be interpreted by apply-refact. It exists
                      as a seperate library so that applications can specify refactorings without depending on GHC.
diff --git a/src/Refact/Types.hs b/src/Refact/Types.hs
--- a/src/Refact/Types.hs
+++ b/src/Refact/Types.hs
@@ -38,7 +38,10 @@
       rtype :: RType
     , pos :: a
     }
-  | RemoveAsKeyword { -- ^  Takes the position of a import decl and removes the as keyword
+
+  | -- |  Takes the position of a import decl and removes the as keyword
+    RemoveAsKeyword
+      {
       pos :: a
       }
 --  | Rename {
