From 5763a9d963883fe8256b1d8d4c344ff122b73a07 Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Tue, 12 May 2015 12:34:58 -0300 Subject: [PATCH] Fix comment about JOIN fixity. --- src/Database/Esqueleto/Internal/Language.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Esqueleto/Internal/Language.hs b/src/Database/Esqueleto/Internal/Language.hs index c067a8f..439113b 100644 --- a/src/Database/Esqueleto/Internal/Language.hs +++ b/src/Database/Esqueleto/Internal/Language.hs @@ -622,7 +622,7 @@ data Insertion a -- * A @JOIN@ of any other two types allowed by the innermost -- magic, where a @JOIN@ may be an 'InnerJoin', a 'CrossJoin', a -- 'LeftOuterJoin', a 'RightOuterJoin', or a 'FullOuterJoin'. --- The @JOINs@ have right fixity, the same as in SQL. +-- The @JOINs@ have left fixity. -- -- The outermost magic allows you to use @from@ on any tuples of -- types supported by innermost magic (and also tuples of tuples,