From 899334f2f04449522b6bdc28db951f2e4520aa8d Mon Sep 17 00:00:00 2001 From: zzhai Date: Mon, 25 Jan 2021 00:13:02 -0800 Subject: [PATCH] Update syntax.mdx "one label" should be the singular form. --- website/content/docs/job-specification/hcl2/syntax.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/job-specification/hcl2/syntax.mdx b/website/content/docs/job-specification/hcl2/syntax.mdx index 651b5da15..cf9f24d78 100644 --- a/website/content/docs/job-specification/hcl2/syntax.mdx +++ b/website/content/docs/job-specification/hcl2/syntax.mdx @@ -64,7 +64,7 @@ task "webserver" { A block has a _type_ (`task` in this example). Each block type defines how many _labels_ must follow the type keyword. The `task` block type -expects one labels, which is `webserver` in the example above. +expects one label, which is `webserver` in the example above. A particular block type may have any number of required labels, or it may require none as with the nested `config` block type.