summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/hcldec/spec-format.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/hcldec/spec-format.md b/cmd/hcldec/spec-format.md
index e26e10f..16c7b7b 100644
--- a/cmd/hcldec/spec-format.md
+++ b/cmd/hcldec/spec-format.md
@@ -41,12 +41,12 @@ spec blocks:
```hcl
object {
attr "name" {
- type = "string"
+ type = string
}
block "address" {
object {
attr "street" {
- type = "string"
+ type = string
}
# ...
}
@@ -73,11 +73,11 @@ any nested spec blocks:
array {
attr {
name = "first_element"
- type = "string"
+ type = string
}
attr {
name = "second_element"
- type = "string"
+ type = string
}
}
```