Skip to content

Commit

Permalink
ci: make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Nov 7, 2024
1 parent 65792c1 commit 1169787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl<'a> Scan<'a> {
/// - Start of delimiter => call `process_delimit`.
/// - `\` => skip one byte.
/// - `` ` `` => call `process_backtick`.
/// Return `Err(())` if no more bytes to process.
/// Return `Err(())` if no more bytes to process.
fn process_byte(&mut self) -> Result<(), ()> {
let byte = self.get_byte()?;
self.inc();
Expand Down

0 comments on commit 1169787

Please sign in to comment.