From d2925e227ce6f7d528f95410c1ec4c1316b95d78 Mon Sep 17 00:00:00 2001 From: Georgi Lyubenov Date: Thu, 29 Oct 2020 13:53:38 +0200 Subject: [PATCH] Remove a double adverb usage --- src/Database/Esqueleto/Experimental.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Esqueleto/Experimental.hs b/src/Database/Esqueleto/Experimental.hs index f7b8fb9..ccca23c 100644 --- a/src/Database/Esqueleto/Experimental.hs +++ b/src/Database/Esqueleto/Experimental.hs @@ -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. --