From a0e6503c46524a0b5c56c9385641493f1826be0c Mon Sep 17 00:00:00 2001 From: Saidi Hamisi Date: Mon, 9 Sep 2024 10:03:11 +0200 Subject: [PATCH] fix(docs): correct age filtering description Updated the documentation to accurately describe the age filtering criteria. The previous text incorrectly stated filtering for people under 18 and over 90, which contradicted the query logic. The corrected description now states filtering for people under 90 and over 18. --- docs/04.guides/04.cookbooks/20.query-of-queries/page.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/04.guides/04.cookbooks/20.query-of-queries/page.md b/docs/04.guides/04.cookbooks/20.query-of-queries/page.md index 767c33692..1ab4f15df 100644 --- a/docs/04.guides/04.cookbooks/20.query-of-queries/page.md +++ b/docs/04.guides/04.cookbooks/20.query-of-queries/page.md @@ -45,7 +45,7 @@ Let's say you have the following database query, ```myQuery```: You would now have a list of names, ages and locations for all the people in a query called ```myQuery```. -Say you want to filter out people under 18 and over 90, but you don't want to hit the database again: +Say you want to filter out people under 90 and over 18, but you don't want to hit the database again: ```lucee