Skip to content

Commit

Permalink
[nfc] Fix mistake in probe type grammar
Browse files Browse the repository at this point in the history
Fix incorrect trailing comma when specifying a layer-associated probe
type.

Signed-off-by: Schuyler Eldridge <[email protected]>
  • Loading branch information
seldridge committed Jan 12, 2024
1 parent cfdde77 commit 49fed0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions revision-history.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ revisionHistory:
- Add section "Circuit Components".
- Reorganized statements section.
- Rewrite of the Types section.
- Fix mistake in layer-associated probe grammar.
abi:
- Add ABI for public modules and filelist output.
- Changed ABI for group and ref generated files.
Expand Down
2 changes: 1 addition & 1 deletion spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -3512,7 +3512,7 @@ type_enum = "{|" , { type_enum_alt } , "|}" ;
type_enum_alt = id, [ ":" , type_constable ] ;
(* Probe Types *)
type_probe = ( "Probe" | "RWProbe" ) , "<", type , [ "," , id , "," ] ">" ;
type_probe = ( "Probe" | "RWProbe" ) , "<", type , [ "," , id ] ">" ;
(* Primitive Operations *)
primop_2expr = primop_2expr_keyword , "(" , expr , "," , expr ")" ;
Expand Down

0 comments on commit 49fed0e

Please sign in to comment.