diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/jsonifier.cabal b/jsonifier.cabal
--- a/jsonifier.cabal
+++ b/jsonifier.cabal
@@ -1,5 +1,5 @@
 name: jsonifier
-version: 0.2
+version: 0.2.0.1
 synopsis: Fast and simple JSON encoding toolkit
 description:
   Minimalistic library for encoding JSON directly to strict bytestring,
diff --git a/library/Jsonifier.hs b/library/Jsonifier.hs
--- a/library/Jsonifier.hs
+++ b/library/Jsonifier.hs
@@ -149,9 +149,6 @@
 
 -- |
 -- JSON Array literal from a foldable over element literals.
---
--- Don\'t worry about using 'fmap' to map the elements of the input datastructure,
--- it will all be optimized away.
 {-# INLINE array #-}
 array :: Foldable f => f Json -> Json
 array foldable =
@@ -183,9 +180,6 @@
 
 -- |
 -- JSON Object literal from a foldable over pairs of key to value literal.
---
--- Don\'t worry about using 'fmap' to map the elements of the input datastructure,
--- it will all be optimized away.
 {-# INLINE object #-}
 object :: Foldable f => f (Text, Json) -> Json
 object f =
