From 22f5217b85f721f6e0f5cedcf0296c6c6529c5ec Mon Sep 17 00:00:00 2001 From: Roman Zipp Date: Wed, 17 May 2023 22:45:00 +0200 Subject: [PATCH] docs: remove unneeded brackets from job specification template docs (#17219) --- website/content/docs/job-specification/template.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/website/content/docs/job-specification/template.mdx b/website/content/docs/job-specification/template.mdx index 0343979f0..0baf3b26c 100644 --- a/website/content/docs/job-specification/template.mdx +++ b/website/content/docs/job-specification/template.mdx @@ -430,7 +430,6 @@ template { {{ range nomadVarList }} {{ . }} {{ end }} -} EOH } @@ -439,7 +438,6 @@ template { {{ range nomadVarList }} {{ .Path }} {{ end }} -} EOH } ``` @@ -453,7 +451,6 @@ template { {{ range nomadVarList "path/to/filter" }} {{ . }} {{ end }} -} EOH } ``` @@ -468,7 +465,6 @@ template { {{ range nomadVarList "path/to/filter@example_namespace" }} {{ . }} {{ end }} -} EOH } ```