diff --git a/composite-base.cabal b/composite-base.cabal
--- a/composite-base.cabal
+++ b/composite-base.cabal
@@ -1,20 +1,20 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.33.0.
+-- This file has been generated from package.yaml by hpack version 0.34.3.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: fb59636ec3fec271338fcf40579360e7d7bb49a3868128fe5e244a4f564acca1
+-- hash: 42cd7a9297580ad2d6a569e06f0a035a2d63a52e1725a2680e8b062db07f8910
 
 name:           composite-base
-version:        0.7.4.0
+version:        0.7.5.0
 synopsis:       Shared utilities for composite-* packages.
 description:    Shared helpers for the various composite packages.
 category:       Records
 homepage:       https://github.com/ConferOpenSource/composite#readme
 author:         Confer Health, Inc.
 maintainer:     oss@vitalbio.com
-copyright:      2017 Confer Health, Inc., 2020 Vital Biosciences
+copyright:      2017 Confer Health, Inc., 2020-2021 Vital Biosciences
 license:        BSD3
 build-type:     Simple
 
@@ -35,7 +35,7 @@
       base >=4.7 && <5
     , deepseq >=1.4 && <1.5
     , exceptions >=0.8.3 && <0.11
-    , lens >=4.15.4 && <4.20
+    , lens >=4.15.4 && <5.1
     , monad-control >=1.0.2.2 && <1.1
     , mtl >=2.2.1 && <2.3
     , profunctors >=5.2.1 && <5.6
@@ -65,7 +65,7 @@
     , deepseq >=1.4 && <1.5
     , exceptions >=0.8.3 && <0.11
     , hspec
-    , lens >=4.15.4 && <4.20
+    , lens >=4.15.4 && <5.1
     , monad-control >=1.0.2.2 && <1.1
     , mtl >=2.2.1 && <2.3
     , profunctors >=5.2.1 && <5.6
diff --git a/src/Composite/Record.hs b/src/Composite/Record.hs
--- a/src/Composite/Record.hs
+++ b/src/Composite/Record.hs
@@ -113,16 +113,16 @@
 --
 --   myRecord1 :: Record MyRecord
 --   myRecord1
---     =  val @"foo" 123
---     :& val @"bar" "foobar"
---     :& val @"baz" 3.21
+--     =  val \@"foo" 123
+--     :& val \@"bar" "foobar"
+--     :& val \@"baz" 3.21
 --     :& RNil
 --
 --   myRecord2 :: Record MyRecord
 --   myRecord2 = rcast
---     $  val @"baz" 3.21
---     :& val @"foo" 123
---     :& val @"bar" "foobar"
+--     $  val \@"baz" 3.21
+--     :& val \@"foo" 123
+--     :& val \@"bar" "foobar"
 --     :& RNil
 -- @
 --
