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 } ```