From c6fa1e70efd935cad9e6b3ba8a6706c29d855230 Mon Sep 17 00:00:00 2001 From: Loek Duys Date: Tue, 15 Mar 2022 13:48:14 +0100 Subject: [PATCH] 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 --- website/docs/language/functions/toset.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/functions/toset.mdx b/website/docs/language/functions/toset.mdx index efbb2c890..1b42f4d8e 100644 --- a/website/docs/language/functions/toset.mdx +++ b/website/docs/language/functions/toset.mdx @@ -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", ] ```