Merge pull request #1314 from jordansissel/fix-hash-syntax-docs

Correct hash syntax (no commas!)
This commit is contained in:
Jordan Sissel 2014-04-29 11:43:31 -07:00
commit 531b9d6af7

View file

@ -116,7 +116,11 @@ The above makes 'path' a 3-element array including all 3 strings.
A hash is basically the same syntax as Ruby hashes.
The key and value are simply pairs, such as:
match => { "field1" => "value1", "field2" => "value2", ... }
match => {
"field1" => "value1"
"field2" => "value2"
...
}
## <a name="fieldreferences"></a>Field References