diff --git a/focus.cabal b/focus.cabal
--- a/focus.cabal
+++ b/focus.cabal
@@ -1,7 +1,7 @@
 name:
   focus
 version:
-  1.0.1.1
+  1.0.1.2
 synopsis:
   A general abstraction for manipulating elements of container data structures
 description:
diff --git a/library/Focus.hs b/library/Focus.hs
--- a/library/Focus.hs
+++ b/library/Focus.hs
@@ -49,7 +49,7 @@
 data Change a =
   Leave {-^ Produce no changes -} |
   Remove {-^ Delete it -} |
-  Set a {-^ Replace it with the provided value -}
+  Set a {-^ Set its value to the provided one -}
   deriving (Functor, Eq, Ord, Show)
 
 
