From cffc561e0d572d31bbbc71a5a3046977a51a7a5c Mon Sep 17 00:00:00 2001 From: Nick Fagerlund Date: Fri, 25 Mar 2016 15:34:45 -0700 Subject: [PATCH] Typo: shouldn't have been "not" --- 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 b502f7a..e206504 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -32,7 +32,7 @@ Expressions are statements that have values. Liquid templates can use expression Liquid accepts the following kinds of expressions: -* **Variables.** The most basic kind of expression is just the name of a variable. Liquid variables are named like Ruby variables: they should consist of alphanumeric characters and underscores, should not start with a letter, and do not have any kind of leading sigil (that is, they look like `var_name`, not `$var_name`). +* **Variables.** The most basic kind of expression is just the name of a variable. Liquid variables are named like Ruby variables: they should consist of alphanumeric characters and underscores, should always start with a letter, and do not have any kind of leading sigil (that is, they look like `var_name`, not `$var_name`). * **Array or hash access.** If you have an expression (usually a variable) whose value is an array or hash, you can use a single value from that array/hash as follows: * `my_variable[]` — The name of the variable, followed immediately by square brackets containing a key expression. * For arrays, the key must be a literal integer or an expression that resolves to an integer.