From a3a9c4e4ac2f7e9b1794f7a7d6d34156f01975dd Mon Sep 17 00:00:00 2001 From: Josh Duff Date: Mon, 6 Jan 2020 16:44:03 -0600 Subject: [PATCH] Specify "array-like" --- site/content/docs/02-template-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index 80566e164f..ce28bb29ac 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -205,7 +205,7 @@ Iterating over lists of values can be done with an each block. ``` -You can use each blocks to iterate over any value with a `length` property. +You can use each blocks to iterate over any array or array-like value — that is, any object with a length property. ---