Skip to content

Commit

Permalink
fix documentation test
Browse files Browse the repository at this point in the history
  • Loading branch information
apparebit committed Oct 23, 2024
1 parent ac3e7c0 commit fdbbb76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/termio/escape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -921,8 +921,8 @@ const fn transition(state: State, byte: u8) -> (State, Action) {
/// if scanner.processed() == 0 && action != Action::Start {
/// return Err(ErrorKind::InvalidData.into());
/// } else if scanner.did_finish() {
/// input.consume(self.processed());
/// break 'colorful self.finished_str()?;
/// input.consume(scanner.processed());
/// break 'colorful scanner.finished_str()?;
/// }
/// }
/// input.consume(filled);
Expand Down

0 comments on commit fdbbb76

Please sign in to comment.