diff --git a/Liquid-for-Designers.textile b/Liquid-for-Designers.textile index c1be14b..8a443b7 100644 --- a/Liquid-for-Designers.textile +++ b/Liquid-for-Designers.textile @@ -116,12 +116,12 @@ Liquid allows you to write simple expressions in the @if@ (and optionally, @else {% endif %} # array = 1,2,3 -{% if array includes 2 %} +{% if array contains 2 %} array includes 2 {% endif %} # string = 'hello world' -{% if string includes 'hello' %} +{% if string contains 'hello' %} string includes 'hello' {% endif %}