diff --git a/Liquid-for-Designers.textile b/Liquid-for-Designers.textile index 2031f4d..df6c1f7 100644 --- a/Liquid-for-Designers.textile +++ b/Liquid-for-Designers.textile @@ -66,7 +66,7 @@ h3. Standard Filters * **append** - append a string **e.g.** {{ 'foo' | append:'bar' }} #=> 'foobar' * **minus** - subtraction **e.g** {{ 4 | minus:2 }} #=> 2 * **plus** - addition **e.g** {{ '1' | plus:'1' }} #=> '11', {{ 1 | plus:1 }} #=> 2 -* **times** - multiplication **e.g** {{ 'foo' | times:4 }} #=> 'foofoofoofoo', {{ 5 | times:4 }} #=> 20 +* **times** - multiplication **e.g** {{ 5 | times:4 }} #=> 20 * **divided_by** - division **e.g** {{ 10 | divided_by:2 }} #=> 5 h1. Tags