Update toset.mdx

Fix output in `toset`
```
toset(["a", "b", 3])
toset([
  "3",
  "a",
  "b",
])
```

This is the actual output from the tf console, using Terraform v1.1.5 on windows_amd64
This commit is contained in:
Loek Duys 2022-03-15 13:48:14 +01:00 committed by GitHub
parent 24d174d36e
commit c6fa1e70ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,9 +31,9 @@ same type, mixed-typed elements will be converted to the most general type:
```
> toset(["a", "b", 3])
[
"3",
"a",
"b",
"3",
]
```