From bb73198b4f11b943c2555b55f0130996197f8e3f Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Sat, 15 Oct 2011 22:59:58 -0400 Subject: [PATCH] Fix servlet strip example --- example/server/templates/products.liquid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/server/templates/products.liquid b/example/server/templates/products.liquid index 555de2e..191d99a 100644 --- a/example/server/templates/products.liquid +++ b/example/server/templates/products.liquid @@ -17,9 +17,9 @@ -

{{ description | split '~' | first }}

+

{{ description | split: '~' | first }}

-

{{ description | split '~' | last }}

+

{{ description | split: '~' | last }}

There are currently {{products | count}} products in the {{section}} catalog