From 378a455830b04aa17017f4961075e3c716e49a11 Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Mon, 14 Mar 2022 12:46:45 -0400 Subject: [PATCH] wip --- lib/liquid/tags/case.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/liquid/tags/case.rb b/lib/liquid/tags/case.rb index fe9f6637..d759a41a 100644 --- a/lib/liquid/tags/case.rb +++ b/lib/liquid/tags/case.rb @@ -9,9 +9,9 @@ module Liquid # @type tag # @description # Creates a switch statement to execute a particular block of code when a variable has a specified value. - # `case`` initializes the switch statement, and `when`` statements define the various conditions. + # `case` initializes the switch statement, and `when` statements define the various conditions. # - # An optional `else`` statement at the end of the case provides code to execute if none of the conditions are met. + # An optional `else` statement at the end of the case provides code to execute if none of the conditions are met. An optional else statement at the end of the case provides code to execute if none of the conditions are met. class Case < Block