more micro optimization

This commit is contained in:
Michael Go
2024-10-24 22:59:28 -03:00
parent 52a87a7e3a
commit fb03e48f08
+1 -1
View File
@@ -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