diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.0.14.1
+
+* Documentation changes only
+
 ## 0.0.14.0
 
 * Add `hGetLine` and `hIsEOF` to `Bluefin.System.IO`
diff --git a/bluefin.cabal b/bluefin.cabal
--- a/bluefin.cabal
+++ b/bluefin.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               bluefin
-version:            0.0.14.0
+version:            0.0.14.1
 license:            MIT
 license-file:       LICENSE
 author:             Tom Ellis
diff --git a/src/Bluefin/Compound.hs b/src/Bluefin/Compound.hs
--- a/src/Bluefin/Compound.hs
+++ b/src/Bluefin/Compound.hs
@@ -502,7 +502,7 @@
     --   mapHandle h =
     --     DynamicReader
     --       { askLRImpl = useImplUnder (askLRImpl h),
-    --         localLRImpl = \f k -> useImplUnder (localLRImpl h f k)
+    --         localLRImpl = \\f k -> useImplUnder (localLRImpl h f k)
     --       }
     --
     -- askLR ::
@@ -524,12 +524,12 @@
     --   (forall e. DynamicReader r e -> Eff (e :& es) a) ->
     --   Eff es a
     -- runDynamicReader r k =
-    --   runReader r $ \h -> do
+    --   runReader r $ \\h -> do
     --     useImplIn
     --       k
     --       DynamicReader
     --         { askLRImpl = ask h,
-    --           localLRImpl = \f k' -> makeOp (local h f (useImpl k'))
+    --           localLRImpl = \\f k' -> makeOp (local h f (useImpl k'))
     --         }
     -- @
 
