We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ffdbcf + 1029fd5 commit 4557953Copy full SHA for 4557953
1 file changed
hclsyntax/spec.md
@@ -268,10 +268,10 @@ collection value.
268
```ebnf
269
CollectionValue = tuple | object;
270
tuple = "[" (
271
- (Expression ("," Expression)* ","?)?
+ (Expression (("," | Newline) Expression)* ","?)?
272
) "]";
273
object = "{" (
274
- (objectelem ("," objectelem)* ","?)?
+ (objectelem (( "," | Newline) objectelem)* ","?)?
275
) "}";
276
objectelem = (Identifier | Expression) ("=" | ":") Expression;
277
```
0 commit comments