Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
crusso authored Mar 18, 2024
1 parent 458ba13 commit 6ec3c28
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rust/candid_parser/src/grammar.lalrpop
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ pub Typ: IDLType = {
PrimTyp => <>,
"opt" <Typ> => IDLType::OptT(Box::new(<>)),
"vec" <Typ> => IDLType::VecT(Box::new(<>)),
// "blob" => IDLType::VecT(Box::new(IDLType::PrimT(PrimType::Nat8))),
"blob" => IDLType::VarT("blob".to_string()),
"record" "{" <Sp<SepBy<RecordFieldTyp, ";">>> "}" =>? {
let mut id: u32 = 0;
Expand Down

0 comments on commit 6ec3c28

Please sign in to comment.