From 13907690a25c735e53167d97e8687409987ca49f Mon Sep 17 00:00:00 2001 From: GiannakopoulosJ Date: Wed, 19 Jan 2022 16:02:24 +0200 Subject: [PATCH] Typo in zipmap documentation zipmap does not produce a map with comma in terraform cli tested with Terraform v1.1.3 --- website/docs/language/functions/zipmap.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/language/functions/zipmap.mdx b/website/docs/language/functions/zipmap.mdx index c813e3e49..277543e3a 100644 --- a/website/docs/language/functions/zipmap.mdx +++ b/website/docs/language/functions/zipmap.mdx @@ -27,7 +27,7 @@ is used in the resulting map. ``` > zipmap(["a", "b"], [1, 2]) { - "a" = 1, - "b" = 2, + "a" = 1 + "b" = 2 } ```