diff --git a/esqueleto.cabal b/esqueleto.cabal
--- a/esqueleto.cabal
+++ b/esqueleto.cabal
@@ -1,5 +1,5 @@
 name:                esqueleto
-version:             0.2.3
+version:             0.2.4
 synopsis:            Bare bones, type-safe EDSL for SQL queries on persistent backends.
 homepage:            https://github.com/meteficha/esqueleto
 license:             BSD3
@@ -58,7 +58,7 @@
       base                 == 4.5.*
     , text                 == 0.11.*
     , persistent           >= 1.0.1  && < 1.1
-    , transformers         == 0.3.*
+    , transformers         >= 0.2
     , unordered-containers >= 0.2
 
     , monad-logger
diff --git a/src/Database/Esqueleto.hs b/src/Database/Esqueleto.hs
--- a/src/Database/Esqueleto.hs
+++ b/src/Database/Esqueleto.hs
@@ -269,7 +269,7 @@
 -- order because that helps composability (see the documentation
 -- of 'on' for more details).
 --
--- We also currently supports @UPDATE@ and @DELETE@ statements.
+-- We also currently support @UPDATE@ and @DELETE@ statements.
 -- For example:
 --
 -- @
diff --git a/src/Database/Esqueleto/Internal/Language.hs b/src/Database/Esqueleto/Internal/Language.hs
--- a/src/Database/Esqueleto/Internal/Language.hs
+++ b/src/Database/Esqueleto/Internal/Language.hs
@@ -138,7 +138,7 @@
   -- | Execute a subquery @SELECT@ in an expression.
   sub_select :: PersistField a => query (expr (Value a)) -> expr (Value a)
 
-  -- | Execute a subquery @SELECT_DISTINCT@ in an expression.
+  -- | Execute a subquery @SELECT DISTINCT@ in an expression.
   sub_selectDistinct :: PersistField a => query (expr (Value a)) -> expr (Value a)
 
   -- | Project a field of an entity.
