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",