From 9c65dc6ff0c3549f19f231189814892df8162a6b Mon Sep 17 00:00:00 2001 From: Eric Lowry Date: Tue, 4 Mar 2025 20:11:12 +0100 Subject: [PATCH] Fixed missing comma in example on where.md Passing operators to the where modifier must be comma-separated from the value. --- content/collections/modifiers/where.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/collections/modifiers/where.md b/content/collections/modifiers/where.md index a73daecef..dc185ce6a 100644 --- a/content/collections/modifiers/where.md +++ b/content/collections/modifiers/where.md @@ -54,7 +54,7 @@ You can also pass an operator to the modifier, so you can do checks like "where ```

I hate...

-{{ games | where('feeling', '!=' 'love') }} +{{ games | where('feeling', '!=', 'love') }} {{ title }}
{{ /games }} ```