website: Fix various typos in the config function documentation

This commit is contained in:
Rupesh Reddy Tumu 2019-03-11 15:59:12 -05:00 committed by Martin Atkins
parent 36bb9b462c
commit fddb52f05c
2 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ are constructed from consecutive pairs of arguments.
{ {
"a" = "b" "a" = "b"
"c" = "d" "c" = "d"
] }
``` ```
Do not use the above form in Terraform v0.12 or above. Instead, use the 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" "a" = "b"
"c" = "d" "c" = "d"
] }
``` ```
## Related Functions ## Related Functions

View File

@ -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: same type, mixed-typed elements will be converted to the most general type:
``` ```
> tolist(["a", "b", 3]) > toset(["a", "b", 3])
[ [
"a", "a",
"b", "b",
@ -49,7 +49,7 @@ ordering of the argument elements is lost and any duplicate values are
coalesced: coalesced:
``` ```
> tolist(["c", "b", "b"]) > toset(["c", "b", "b"])
[ [
"b", "b",
"c", "c",