From c2105db6d089eb79d08f506049f8630048fb926f Mon Sep 17 00:00:00 2001 From: Simon Welsh Date: Wed, 11 Sep 2013 12:05:43 +1200 Subject: [PATCH] Count, not Length --- docs/en/reference/templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/templates.md b/docs/en/reference/templates.md index d5f2d3959..d850fc600 100644 --- a/docs/en/reference/templates.md +++ b/docs/en/reference/templates.md @@ -410,7 +410,7 @@ have to repeat it on each reference of a property. properties of the collection itself, instead of iterating over it. For example: :::ss - $Children.Length + $Children.Count returns the number of items in the $Children collection.