From d6abdd14e7f6ee7e2c616b741dc58b03a2550a02 Mon Sep 17 00:00:00 2001 From: Benjamin Farley Date: Wed, 1 Nov 2017 17:48:34 +0000 Subject: [PATCH] website: correction of chunklist interpolation function example --- website/docs/configuration/interpolation.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/configuration/interpolation.html.md b/website/docs/configuration/interpolation.html.md index d80e528d21..8e1681ee81 100644 --- a/website/docs/configuration/interpolation.html.md +++ b/website/docs/configuration/interpolation.html.md @@ -233,7 +233,7 @@ 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"]` + * `list(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