From 8579010409969e495b44189aee73bcf5f44aaa82 Mon Sep 17 00:00:00 2001 From: Josh Berman Date: Mon, 17 Nov 2014 17:19:45 +0200 Subject: [PATCH] INSERT INTO SELECT typo --- 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 c8fa9cf..b38ac81 100644 --- a/src/Database/Esqueleto.hs +++ b/src/Database/Esqueleto.hs @@ -347,7 +347,7 @@ import qualified Database.Persist -- In @esqueleto@, we may write the same query above as: -- -- @ --- insertSelect $ from $ \p-> +-- insertSelect $ from $ \\p-> -- return $ BlogPost \<# \"Group Blog Post\" \<&\> (p ^. PersonId) -- @ --