Merge pull request #84 from bermanjosh/patch-1

INSERT INTO SELECT typo
This commit is contained in:
Felipe Lessa 2014-11-24 15:02:36 -02:00
commit 2d4a10c1e8

View File

@ -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)
-- @
--