diff --git a/Data/Vinyl/Field.hs b/Data/Vinyl/Field.hs
--- a/Data/Vinyl/Field.hs
+++ b/Data/Vinyl/Field.hs
@@ -11,8 +11,6 @@
 
 -- | A field contains a key and a type.
 data (:::) :: Symbol -> * -> * where
-  -- | A constructor is given to facilitate introducing fields from terms without
-  -- type annotations.
   Field :: sy ::: t
 
 instance SingI sy => Show (sy ::: t) where
diff --git a/Data/Vinyl/Rec.hs b/Data/Vinyl/Rec.hs
--- a/Data/Vinyl/Rec.hs
+++ b/Data/Vinyl/Rec.hs
@@ -31,10 +31,7 @@
 -- | A record is parameterized by a list of fields and a functor
 -- to be applied to each of those fields.
 data Rec :: [*] -> (* -> *) -> * where
-  -- | The empty record.
   RNil :: Rec '[] f
-
-  -- | Cons for records.
   (:&) :: f t -> Rec rs f -> Rec ((sy ::: t) ': rs) f
 infixr :&
 
diff --git a/vinyl.cabal b/vinyl.cabal
--- a/vinyl.cabal
+++ b/vinyl.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                vinyl
-version:             0.1.1.1
+version:             0.1.1.2
 synopsis:            Extensible Records
 -- description:
 license:             MIT
