From 91e1563e1cc7b2797e41acf25b54b02d6340ae23 Mon Sep 17 00:00:00 2001 From: Michael Go Date: Thu, 24 Oct 2024 22:59:28 -0300 Subject: [PATCH] more micro optimization --- lib/liquid/tokenizer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/liquid/tokenizer.rb b/lib/liquid/tokenizer.rb index 779304cf..2d79dde5 100644 --- a/lib/liquid/tokenizer.rb +++ b/lib/liquid/tokenizer.rb @@ -91,7 +91,7 @@ module Liquid byte_a = @ss.scan_byte until @ss.eos? - while @ss.eos? == false && byte_a != OPEN_CURLEY && byte_a != CLOSE_CURLEY + while @ss.eos? == false && byte_a != CLOSE_CURLEY && byte_a != OPEN_CURLEY byte_a = @ss.scan_byte end