Correct typo in `length()` documentation (#7947)

This commit is contained in:
Cecchi MacNaughton 2016-08-03 10:48:00 -07:00 committed by Radek Simko
parent 5320a54831
commit 8d9a9ddebe
1 changed files with 1 additions and 2 deletions

View File

@ -165,8 +165,7 @@ The supported built-in functions are:
* `keys(map)` - Returns a lexically sorted list of the map keys.
* `length(list)` - Returns a number of members in a given list, map, or string.
or a number of characters in a given string.
* `length(list)` - Returns a number of members in a given list or map, or a number of characters in a given string.
* `${length(split(",", "a,b,c"))}` = 3
* `${length("a,b,c")}` = 5
* `${length(map("key", "val"))}` = 1