Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
NTTVy03 committed Jan 30, 2025
1 parent 20a2c18 commit ccc0f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/parser/src/grammar/declaration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ fn signal_header(p: &mut Parser) -> Option<bool> {
let result = match p.current() {
InputKw => Some(true),
OutputKw => Some(false),
_ => None
_ => None,
};

if result.is_some() {
p.advance();
}
Expand Down

0 comments on commit ccc0f8b

Please sign in to comment.