From a71dea2ac9add2abac8101612978c0a6ebd1c99d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Portebois?= Date: Thu, 15 Nov 2018 13:12:58 -0500 Subject: [PATCH] Change misleading boolean example in env stanza coercion section --- website/source/docs/job-specification/env.html.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/website/source/docs/job-specification/env.html.md b/website/source/docs/job-specification/env.html.md index b86d158ac..9ae0e02fe 100644 --- a/website/source/docs/job-specification/env.html.md +++ b/website/source/docs/job-specification/env.html.md @@ -53,13 +53,14 @@ is preserved. ```hcl env { - key = "true" + key = 1.4 + key = "1.4" + "key" = 1.4 + "key" = "1.4" + key = true - - "key" = true - - key = 1.4 - key = "1.4" + key = "1" + key = 1 } ```