From 5a4957f141ec942f0cc16b5e74db0809c7d9699d Mon Sep 17 00:00:00 2001 From: Nick Fagerlund Date: Fri, 30 Oct 2020 17:42:40 -0700 Subject: [PATCH] Typo fix --- website/docs/configuration/functions/element.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/configuration/functions/element.html.md b/website/docs/configuration/functions/element.html.md index 8c8fa4f74b..274ff54392 100644 --- a/website/docs/configuration/functions/element.html.md +++ b/website/docs/configuration/functions/element.html.md @@ -19,7 +19,7 @@ element(list, index) ``` The index is zero-based. This function produces an error if used with an -empty list. The index must be non-negative integer. +empty list. The index must be a non-negative integer. Use the built-in index syntax `list[index]` in most cases. Use this function only for the special additional "wrap-around" behavior described below.