Skip to content

Commit c8546fc

Browse files
committed
Fix enumerations in docs/huddle.md
1 parent 4e70e44 commit c8546fc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/huddle.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ defining CDDL in Huddle.
77

88
## Core Types
99
Huddle utilizes several core types to represent CDDL constructs:
10-
Huddle: The top-level type representing a collection of rules.
11-
HuddleItem: Represents individual items within a Huddle, such as rules, groups, or generic rules.
12-
Rule: A named type definition.
13-
Named: A type wrapper for associating a name, value, and optional description with an item.
14-
Value: A type representing primitive CBOR values.
15-
Group: Represents a collection of entries within a map or array.
10+
- Huddle: The top-level type representing a collection of rules.
11+
- HuddleItem: Represents individual items within a Huddle, such as rules, groups, or generic rules.
12+
- Rule: A named type definition.
13+
- Named: A type wrapper for associating a name, value, and optional description with an item.
14+
- Value: A type representing primitive CBOR values.
15+
- Group: Represents a collection of entries within a map or array.
1616

1717
## Language Extensions
1818

@@ -96,9 +96,9 @@ choice =:= optionA / optionB
9696
## Quantifiers
9797
Huddle provides functions to specify occurrence quantifiers for group entries
9898
and array elements:
99-
<+: Lower bound
100-
+>: Upper bound
101-
opt: Optional (0 or 1 occurrences)
99+
- <+: Lower bound
100+
- +>: Upper bound
101+
- opt: Optional (0 or 1 occurrences)
102102

103103
### Example:
104104
```haskell

0 commit comments

Comments
 (0)