From a727e0e9e1cbfaaac2446b3161b7eafb27679acd Mon Sep 17 00:00:00 2001 From: Levi Notik Date: Wed, 2 Dec 2015 13:12:03 -0500 Subject: [PATCH] fix some grammar in comments --- src/Database/Esqueleto.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Database/Esqueleto.hs b/src/Database/Esqueleto.hs index e21dfd6..4bae948 100644 --- a/src/Database/Esqueleto.hs +++ b/src/Database/Esqueleto.hs @@ -20,7 +20,7 @@ -- or import @esqueleto@ itself qualified: -- -- @ --- -- For a module uses esqueleto just on some queries. +-- -- For a module that uses esqueleto just on some queries. -- import Database.Persistent -- import qualified Database.Esqueleto as E -- @ @@ -134,7 +134,7 @@ import qualified Database.Persist -- relational algebra EDSL such as HaskellDB, which is -- non-trivial to translate into SQL.) -- --- * Support the mostly used SQL features. We'd like you to be +-- * Support the most widely used SQL features. We'd like you to be -- able to use @esqueleto@ for all of your queries, no -- exceptions. Send a pull request or open an issue on our -- project page () if @@ -252,7 +252,7 @@ import qualified Database.Persist -- return p -- @ -- --- Since @age@ is an optional @Person@ field, we use 'just' lift +-- Since @age@ is an optional @Person@ field, we use 'just' to lift -- @'val' 18 :: SqlExpr (Value Int)@ into @just ('val' 18) :: -- SqlExpr (Value (Maybe Int))@. -- @@ -276,7 +276,7 @@ import qualified Database.Persist -- return (b, p) -- @ -- --- However, we may want your results to include people who don't +-- However, you may want your results to include people who don't -- have any blog posts as well using a @LEFT OUTER JOIN@: -- -- @ @@ -306,7 +306,7 @@ import qualified Database.Persist -- -- We are by no means limited to joins of two tables, nor by -- joins of different tables. For example, we may want a list --- the @Follow@ entity: +-- of the @Follow@ entity: -- -- @ -- SELECT P1.*, Follow.*, P2.*