diff --git a/lens-tutorial.cabal b/lens-tutorial.cabal
--- a/lens-tutorial.cabal
+++ b/lens-tutorial.cabal
@@ -1,5 +1,5 @@
 Name: lens-tutorial
-Version: 1.0.2
+Version: 1.0.3
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
diff --git a/src/Control/Lens/Tutorial.hs b/src/Control/Lens/Tutorial.hs
--- a/src/Control/Lens/Tutorial.hs
+++ b/src/Control/Lens/Tutorial.hs
@@ -229,10 +229,11 @@
 > type Getting b a b  = (b -> Const b b) -> (a -> Const b a)
 >
 > -- ... equivalent to: (b ->       b  ) -> (a ->       b  )
->
-> -- ... equivalent to:                     (a ->       b  )
 
-    ... you can build a `view`-like function.
+    ... and if you apply a function of that type to `id` then you get a
+    `view`-like function
+
+> --                                        (a ->       b  )
 
     Those are not the only two `Functor`s we can pick.  In fact, we can do a
     lot more with lenses than just get and set values, but those are the two
