diff --git a/compdata-fixplate.cabal b/compdata-fixplate.cabal
--- a/compdata-fixplate.cabal
+++ b/compdata-fixplate.cabal
@@ -1,5 +1,5 @@
 name:                compdata-fixplate
-version:             0.1
+version:             0.1.1
 synopsis:            Compdata basics implemented on top of Fixplate
 description:         This package implements the basic interface of
                      <https://hackage.haskell.org/package/compdata Compdata>
@@ -20,9 +20,15 @@
 author:              Emil Axelsson
 maintainer:          78emil@gmail.com
 copyright:           2018 Emil Axelsson
+homepage:            https://github.com/emilaxelsson/compdata-fixplate
+bug-reports:         https://github.com/emilaxelsson/compdata-fixplate/issues
 category:            Generics
 build-type:          Simple
 cabal-version:       >=1.10
+
+source-repository head
+  type:     git
+  location: https://github.com/emilaxelsson/compdata-fixplate
 
 library
   exposed-modules:   Data.Comp.Fixplate
diff --git a/src/Data/Comp/Fixplate.hs b/src/Data/Comp/Fixplate.hs
--- a/src/Data/Comp/Fixplate.hs
+++ b/src/Data/Comp/Fixplate.hs
@@ -209,7 +209,7 @@
 toTree :: (Functor f, Foldable f) => Term f -> Tree (f Hole)
 toTree = cata $ \f -> Node (const Hole <$> f) $ toList f
 
--- Wrapper type with a 'ShowF' instance that does not show injections ('InL',
+-- | Wrapper type with a 'ShowF' instance that does not show injections ('InL',
 -- 'InR')
 newtype HideInj f a = HideInj {unHideInj :: f a}
   deriving (Foldable, Functor, Traversable)
