From adf0146142b658aa53016858855db5847161f311 Mon Sep 17 00:00:00 2001 From: Jonathan Daugherty Date: Tue, 7 Jul 2015 19:43:06 -0700 Subject: [PATCH] Docstring typo --- src/Brick/Types.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Brick/Types.hs b/src/Brick/Types.hs index 075f402..17d0c22 100644 --- a/src/Brick/Types.hs +++ b/src/Brick/Types.hs @@ -80,10 +80,10 @@ class HandleEvent a where handleEvent :: Event -> a -> a -- | A template haskell function to build lenses for a record type. This --- function differs from the 'Lens.makeLenses' function in that it does --- not require the record fields to be prefixed with underscores and --- it adds an "L" suffix to lens names to make it clear that they are --- lenses. +-- function differs from the 'Control.Lens.makeLenses' function in that +-- it does not require the record fields to be prefixed with underscores +-- and it adds an "L" suffix to lens names to make it clear that they +-- are lenses. suffixLenses :: TH.Name -> TH.DecsQ suffixLenses = makeLensesWith $ lensRules & lensField .~ (\_ _ name -> [TopName $ TH.mkName $ TH.nameBase name ++ "L"])