From 400bc611238a866651a20d50f46b113056e9b985 Mon Sep 17 00:00:00 2001 From: Mike Bridge Date: Mon, 30 Mar 2015 22:17:42 -0600 Subject: [PATCH] Updated Liquid for Designers (markdown) --- Liquid-for-Designers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Liquid-for-Designers.md b/Liquid-for-Designers.md index 07d9be6..286a80a 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -65,7 +65,7 @@ Hello {{ 'now' | date: "%Y %h" }} * `append` - append a string *e.g.* `{{ 'foo' | append:'bar' }} #=> 'foobar'` * `slice` - slice a string. Takes an offset and length, *e.g.* `{{ "hello" | slice: -3, 3 }} #=> llo` * `minus` - subtraction *e.g.* `{{ 4 | minus:2 }} #=> 2` -* `plus` - addition *e.g.* `{{ '1' | plus:'1' }} #=> '11'`, `{{ 1 | plus:1 }} #=> 2` +* `plus` - addition *e.g.* `{{ '1' | plus:'1' }} #=> 2`, `{{ 1 | plus:1 }} #=> 2` * `times` - multiplication *e.g* `{{ 5 | times:4 }} #=> 20` * `divided_by` - integer division *e.g.* `{{ 10 | divided_by:3 }} #=> 3` * `split` - split a string on a matching pattern *e.g.* `{{ "a~b" | split:"~" }} #=> ['a','b']`