summaryrefslogtreecommitdiff
path: root/hclsyntax
diff options
context:
space:
mode:
authorBrian Duggan <bduggan@matatu.org>2022-11-08 15:32:14 -0500
committerGitHub <noreply@github.com>2022-11-08 15:32:14 -0500
commit1029fd56526e61a840b8d3ba5fcd535646f87a76 (patch)
tree61e42a6f2ea5f42be686b8fda5a547e1a89d2e00 /hclsyntax
parent32bc0be91867b40fdb0ffd247f5b363a423848b4 (diff)
Update hclsyntax/spec.md
Co-authored-by: kmoe <5575356+kmoe@users.noreply.github.com>
Diffstat (limited to 'hclsyntax')
-rw-r--r--hclsyntax/spec.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/hclsyntax/spec.md b/hclsyntax/spec.md
index 672744a..e6e9fc4 100644
--- a/hclsyntax/spec.md
+++ b/hclsyntax/spec.md
@@ -268,7 +268,7 @@ collection value.
```ebnf
CollectionValue = tuple | object;
tuple = "[" (
- (Expression ("," Expression)* ","?)?
+ (Expression (("," | Newline) Expression)* ","?)?
) "]";
object = "{" (
(objectelem (( "," | Newline) objectelem)* ","?)?