From 077458ad563599675fdce2d7a0c9c30a33dbc3c6 Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Thu, 6 Sep 2012 01:27:34 -0300 Subject: [PATCH] Typos. --- src/Database/Esqueleto/Internal/Language.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Database/Esqueleto/Internal/Language.hs b/src/Database/Esqueleto/Internal/Language.hs index 9d1e09a..63ff551 100644 --- a/src/Database/Esqueleto/Internal/Language.hs +++ b/src/Database/Esqueleto/Internal/Language.hs @@ -202,10 +202,10 @@ infixr 2 `InnerJoin`, `CrossJoin`, `LeftOuterJoin`, `RightOuterJoin`, `FullOuter -- | Data type that represents an @INNER JOIN@ (see 'LeftOuterJoin' for an example). data InnerJoin a b = a `InnerJoin` b --- | Data type that represents an @CROSS JOIN@ (see 'LeftOuterJoin' for an example). +-- | Data type that represents a @CROSS JOIN@ (see 'LeftOuterJoin' for an example). data CrossJoin a b = a `CrossJoin` b --- | Data type that represents an @LEFT OUTER JOIN@. For example, +-- | Data type that represents a @LEFT OUTER JOIN@. For example, -- -- @ -- select $ @@ -222,10 +222,10 @@ data CrossJoin a b = a `CrossJoin` b -- @ data LeftOuterJoin a b = a `LeftOuterJoin` b --- | Data type that represents an @RIGHT OUTER JOIN@ (see 'LeftOuterJoin' for an example). +-- | Data type that represents a @RIGHT OUTER JOIN@ (see 'LeftOuterJoin' for an example). data RightOuterJoin a b = a `RightOuterJoin` b --- | Data type that represents an @FULL OUTER JOIN@ (see 'LeftOuterJoin' for an example). +-- | Data type that represents a @FULL OUTER JOIN@ (see 'LeftOuterJoin' for an example). data FullOuterJoin a b = a `FullOuterJoin` b