diff --git a/hasql.cabal b/hasql.cabal
--- a/hasql.cabal
+++ b/hasql.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               hasql
-version:            1.6.4.2
+version:            1.6.4.3
 category:           Hasql, Database, PostgreSQL
 synopsis:           An efficient PostgreSQL driver with a flexible mapping API
 description:
diff --git a/library/Hasql/Statement.hs b/library/Hasql/Statement.hs
--- a/library/Hasql/Statement.hs
+++ b/library/Hasql/Statement.hs
@@ -117,8 +117,8 @@
 --
 -- Fortunately, Postgres does provide the expected functionality for arrays with other operators:
 --
--- * Use @something = ANY($1)@ instead of @something IN ($1)@
--- * Use @something <> ALL($1)@ instead of @something NOT IN ($1)@
+-- * Use @some_expression = ANY($1)@ instead of @some_expression IN ($1)@
+-- * Use @some_expression <> ALL($1)@ instead of @some_expression NOT IN ($1)@
 --
 -- For details refer to
 -- <https://www.postgresql.org/docs/9.6/static/functions-comparisons.html#AEN20944 the PostgreSQL docs>.
