From fddb52f05c4032699b1cd85dbd28c38c70c444be Mon Sep 17 00:00:00 2001 From: Rupesh Reddy Tumu Date: Mon, 11 Mar 2019 15:59:12 -0500 Subject: [PATCH] website: Fix various typos in the config function documentation --- website/docs/configuration/functions/map.html.md | 4 ++-- website/docs/configuration/functions/toset.html.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/configuration/functions/map.html.md b/website/docs/configuration/functions/map.html.md index 4897c8b1d..4735b8788 100644 --- a/website/docs/configuration/functions/map.html.md +++ b/website/docs/configuration/functions/map.html.md @@ -27,7 +27,7 @@ are constructed from consecutive pairs of arguments. { "a" = "b" "c" = "d" -] +} ``` Do not use the above form in Terraform v0.12 or above. Instead, use the @@ -38,7 +38,7 @@ built-in map construction syntax, which achieves the same result: { "a" = "b" "c" = "d" -] +} ``` ## Related Functions diff --git a/website/docs/configuration/functions/toset.html.md b/website/docs/configuration/functions/toset.html.md index 02ce0225b..2a63f183d 100644 --- a/website/docs/configuration/functions/toset.html.md +++ b/website/docs/configuration/functions/toset.html.md @@ -36,7 +36,7 @@ Since Terraform's concept of a set requires all of the elements to be of the same type, mixed-typed elements will be converted to the most general type: ``` -> tolist(["a", "b", 3]) +> toset(["a", "b", 3]) [ "a", "b", @@ -49,7 +49,7 @@ ordering of the argument elements is lost and any duplicate values are coalesced: ``` -> tolist(["c", "b", "b"]) +> toset(["c", "b", "b"]) [ "b", "c",