fix: Match width of ascii and unicode secondary file start

This commit is contained in:
Scott Schafer 2025-07-29 03:41:09 -06:00
parent 64ca23b623
commit 935fdb6980
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -2988,7 +2988,7 @@ impl HumanEmitter {
fn secondary_file_start(&self) -> &'static str {
match self.theme {
OutputTheme::Ascii => "::: ",
OutputTheme::Unicode => " ",
OutputTheme::Unicode => " ",
}
}

View file

@ -4,7 +4,7 @@ error[E0624]: method `method` is private
LL │ s.method();
│ ━━━━━━ private method
⸬ $DIR/auxiliary/close_window.rs:3:5
$DIR/auxiliary/close_window.rs:3:5
LL │ fn method(&self) {}
╰╴ ──────────────── private method defined here