Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Jan 25, 2025
1 parent 96bdecc commit 28c719c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,9 @@ impl Debug for NextByte {
NextByte::ForcedEOI => write!(f, "ForcedEOI"),
NextByte::SomeBytes0 => write!(f, "SomeBytes0"),
NextByte::SomeBytes1(b) => write!(f, "SomeBytes1({:?})", *b as char),
NextByte::SomeBytes2([a, b]) => write!(f, "SomeBytes2({:?}, {:?})", *a as char, *b as char),
NextByte::SomeBytes2([a, b]) => {
write!(f, "SomeBytes2({:?}, {:?})", *a as char, *b as char)
}
NextByte::Dead => write!(f, "Dead"),
}
}
Expand Down

0 comments on commit 28c719c

Please sign in to comment.