Skip to content

Commit

Permalink
Tables for output
Browse files Browse the repository at this point in the history
  • Loading branch information
Cypher1 committed Sep 22, 2024
1 parent 7769f68 commit b0d4970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions partable-parser/src/tests/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ impl std::fmt::Debug for State<'_> {
writeln!(f, "PERF")?;
writeln!(
f,
" Ran {num_rules:3} rules {rule_runs:4} times",
" Ran on {num_rules:3} rules {rule_runs:4} times",
num_rules = self.rules.len(),
rule_runs = self.rule_runs
)?;
Expand All @@ -389,7 +389,7 @@ impl std::fmt::Debug for State<'_> {
num_bytes = self.input.len(),
token_runs = self.token_runs
)?;
writeln!(f, " Ran {loops:3} times", loops = self.loop_runs)?;
writeln!(f, " Ran {loops:3} times", loops = self.loop_runs)?;
Ok(())
}
}
Expand Down

0 comments on commit b0d4970

Please sign in to comment.