From 9f77c954ecef797aeda5928b008c9706c74b6484 Mon Sep 17 00:00:00 2001 From: Laura Pacilio <83350965+laurapacilio@users.noreply.github.com> Date: Mon, 17 Oct 2022 18:31:31 -0400 Subject: [PATCH] Update website/docs/language/expressions/for.mdx --- website/docs/language/expressions/for.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/expressions/for.mdx b/website/docs/language/expressions/for.mdx index 5a99511732..23a61ddf0c 100644 --- a/website/docs/language/expressions/for.mdx +++ b/website/docs/language/expressions/for.mdx @@ -127,7 +127,7 @@ using lexical sorting. For sets of strings, Terraform sorts the elements by their value, using lexical sorting. -For sets of other types, Terraform uses an arbitrary ordering. For that reason, we recommend converting the result of such an expression to itself be a set so that it's clear elsewhere in the configuration that the result is unordered. You can use [the `toset` function](/language/functions/toset) +For sets of other types, Terraform uses an arbitrary ordering. We recommend converting the expression result into a set to make it clear elsewhere in the configuration that the result is unordered. You can use [the `toset` function](/language/functions/toset) to concisely convert a `for` expression result to be of a set type. ```hcl