From 6786c1361ffe7aaa520d2efc799963edf2a36ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20P=C3=A0mies?= Date: Fri, 17 Nov 2017 01:07:44 +0100 Subject: [PATCH] website: fix incorrect examples for the chunklist function --- website/docs/configuration/interpolation.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/configuration/interpolation.html.md b/website/docs/configuration/interpolation.html.md index 8e1681ee8..db227f21e 100644 --- a/website/docs/configuration/interpolation.html.md +++ b/website/docs/configuration/interpolation.html.md @@ -232,8 +232,8 @@ The supported built-in functions are: * `chunklist(list, size)` - Returns the `list` items chunked by `size`. Examples: - * `list(aws_subnet.foo.*.id, 1)`: will outputs `[["id1"], ["id2"], ["id3"]]` - * `list(var.list_of_strings, 2)`: will outputs `[["id1", "id2"], ["id3", "id4"], ["id5"]]` + * `chunklist(aws_subnet.foo.*.id, 1)`: will outputs `[["id1"], ["id2"], ["id3"]]` + * `chunklist(var.list_of_strings, 2)`: will outputs `[["id1", "id2"], ["id3", "id4"], ["id5"]]` * `file(path)` - Reads the contents of a file into the string. Variables in this file are _not_ interpolated. The contents of the file are