From 9e0dc135ca9dea775deb2ef060bd397671b033c8 Mon Sep 17 00:00:00 2001 From: EricFromCanada Date: Mon, 22 Feb 2021 16:34:14 -0500 Subject: [PATCH] {% when %} can have multiple cases --- _tags/control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tags/control-flow.md b/_tags/control-flow.md index 83f30fc..3a99343 100644 --- a/_tags/control-flow.md +++ b/_tags/control-flow.md @@ -86,7 +86,7 @@ Creates a switch statement to compare a variable with different values. `case` i {% case handle %} {% when "cake" %} This is a cake - {% when "cookie" %} + {% when "cookie", "biscuit" %} This is a cookie {% else %} This is not a cake nor a cookie