From 3a66236c144ef062b4b42579377c598a2cf98bf4 Mon Sep 17 00:00:00 2001 From: Brent Woodruff Date: Fri, 2 Jul 2021 15:36:47 -0400 Subject: [PATCH 1/2] note that output of jsonencode is minified --- website/docs/language/functions/jsonencode.html.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/language/functions/jsonencode.html.md b/website/docs/language/functions/jsonencode.html.md index 06f13fa842..6568c41edc 100644 --- a/website/docs/language/functions/jsonencode.html.md +++ b/website/docs/language/functions/jsonencode.html.md @@ -38,6 +38,8 @@ Unicode escape sequences: replacing `<`, `>`, `&`, `U+2028`, and `U+2029` with `\u003c`, `\u003e`, `\u0026`, `\u2028`, and `\u2029`. This is to preserve compatibility with Terraform 0.11 behavior. +The output of `jsonencode` is a minified representation of the input. + ## Examples ``` From ed84cb886e4803a785b3ddb6e070b12881a67a6e Mon Sep 17 00:00:00 2001 From: Brent Woodruff Date: Mon, 23 Aug 2021 14:10:50 -0400 Subject: [PATCH 2/2] Apply suggested wording update. --- website/docs/language/functions/jsonencode.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/functions/jsonencode.html.md b/website/docs/language/functions/jsonencode.html.md index 6568c41edc..7b01010ce1 100644 --- a/website/docs/language/functions/jsonencode.html.md +++ b/website/docs/language/functions/jsonencode.html.md @@ -38,7 +38,7 @@ Unicode escape sequences: replacing `<`, `>`, `&`, `U+2028`, and `U+2029` with `\u003c`, `\u003e`, `\u0026`, `\u2028`, and `\u2029`. This is to preserve compatibility with Terraform 0.11 behavior. -The output of `jsonencode` is a minified representation of the input. +`jsonencode` outputs a minified representation of the input. ## Examples