From 5192a2b98e17edf65bf9b26f86614810058ea37c Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Tue, 4 Mar 2014 09:51:50 -0300 Subject: [PATCH] Fix typo on doc (closes #36). --- src/Database/Esqueleto.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Esqueleto.hs b/src/Database/Esqueleto.hs index 65954c4..383f0d7 100644 --- a/src/Database/Esqueleto.hs +++ b/src/Database/Esqueleto.hs @@ -237,7 +237,7 @@ import qualified Database.Persist -- -- Since @age@ is an optional @Person@ field, we use 'just' lift -- @val 18 :: SqlExpr (Value Int)@ into @just (val 18) :: --- SqlExpr (Value (Just Int))@. +-- SqlExpr (Value (Maybe Int))@. -- -- Implicit joins are represented by tuples. For example, to get -- the list of all blog posts and their authors, we could write: