Remove a double adverb usage

This commit is contained in:
Georgi Lyubenov 2020-10-29 13:53:38 +02:00 committed by Matt Parsons
parent a319d13bee
commit d2925e227c

View File

@ -1114,7 +1114,7 @@ fromSubQuery subqueryType subquery = do
-- | @WITH@ clause used to introduce a [Common Table Expression (CTE)](https://en.wikipedia.org/wiki/Hierarchical_and_recursive_queries_in_SQL#Common_table_expression).
-- CTEs are supported in most modern SQL engines and can be useful
-- in performance tuning. In Esqueleto, CTEs should be used as a
-- subquery memoization tactic. While when writing plain SQL, CTEs
-- subquery memoization tactic. When writing plain SQL, CTEs
-- are sometimes used to organize the SQL code, in Esqueleto, this
-- is better achieved through function that return 'SqlQuery' values.
--