diff --git a/conversion.cabal b/conversion.cabal
--- a/conversion.cabal
+++ b/conversion.cabal
@@ -1,7 +1,7 @@
 name:
   conversion
 version:
-  1.1.0.0
+  1.1.0.1
 synopsis:
   Universal converter between values of different types
 category:
diff --git a/library/Conversion.hs b/library/Conversion.hs
--- a/library/Conversion.hs
+++ b/library/Conversion.hs
@@ -7,9 +7,6 @@
 -- A type-class, 
 -- which provides a non-partial conversion function from a value of type @a@ 
 -- to a value of type @b@.
--- 
--- As per <http://en.wikipedia.org/wiki/Morphism#Definition the definition of Morphism>,
--- @a@ is the /domain/ and @b@ is the /codomain/.
 class Conversion a b where
   convert :: a -> b
 
