From 6aabaaabd39069b2e604bbc14e8a265af334f53a Mon Sep 17 00:00:00 2001 From: Corsin Ragettli <112173989+corsin-ragettli@users.noreply.github.com> Date: Mon, 25 Nov 2024 15:39:47 +0100 Subject: [PATCH] fix(types.mdx): implement feedback Co-authored-by: Rose M Koron <32436232+rkoron007@users.noreply.github.com> --- website/docs/language/expressions/types.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/expressions/types.mdx b/website/docs/language/expressions/types.mdx index 4d6978cc93..52793de62b 100644 --- a/website/docs/language/expressions/types.mdx +++ b/website/docs/language/expressions/types.mdx @@ -80,7 +80,7 @@ List literals can be split into multiple lines for readability, but always require a comma between values. A comma after the final value is allowed, but not required. Values in a list can be arbitrary expressions. -List and tuples have differences regarding allowed types. See [tuples](/terraform/language/expressions/type-constraints#tuple) and [lists](/terraform/language/expressions/type-constraints#list) +Lists and tuples each have different constraints on the types they allow. For more information on the types that each allows, refer to [tuples](/terraform/language/expressions/type-constraints#tuple) and [lists](/terraform/language/expressions/type-constraints#list). ### Sets