From cd50456e3eae37c221316c60f34717aa80beaa58 Mon Sep 17 00:00:00 2001 From: eglaysher Date: Thu, 12 Aug 2010 13:45:51 -0700 Subject: [PATCH] Migrated from liquid-for-designers v19 --- Liquid-for-Designers.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 %}