Skip to content

Commit 5d8d967

Browse files
authored
Merge pull request #32 from fxamacker/fxamacker/use-array-for-capability-type
Use array for capability type
2 parents dcb34cb + 9672869 commit 5d8d967

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

ccf_specs.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@ ccf-composite-type-message =
566566
])
567567
568568
composite-type = [
569-
id: bstr,
570-
location-identifier: tstr,
571-
fields: [
569+
id: bstr,
570+
location-identifier: tstr,
571+
fields: [
572572
+ [
573573
field-name: tstr,
574574
field-type: inline-type
@@ -633,10 +633,11 @@ dict-type =
633633
634634
capability-type =
635635
; cbor-tag-capability-type
636-
#6.142(
636+
; use an array as an extension point
637+
#6.142([
637638
; borrow-type
638639
inline-type
639-
)
640+
])
640641
641642
type-ref =
642643
; cbor-tag-type-ref
@@ -934,10 +935,11 @@ restricted-type-value =
934935
935936
capability-type-value =
936937
; cbor-tag-capability-type-value
937-
#6.158(
938+
; use an array as an extension point
939+
#6.158([
938940
; borrow-type
939941
type-value
940-
)
942+
])
941943
942944
;CDDL-END
943945
```

0 commit comments

Comments
 (0)