1
Fork 0
mirror of https://github.com/RGBCube/dix synced 2025-07-27 03:37:45 +00:00

fix: fix arrow glyph

This commit is contained in:
RGBCube 2025-05-09 18:49:54 +03:00 committed by bloxx12
parent f4357e1c50
commit 646efcf351
2 changed files with 2 additions and 2 deletions

View file

@ -244,7 +244,7 @@ pub fn write_diffln<'a>(
writer,
"{oldacc}{arrow}{newacc}",
arrow = if !oldacc.is_empty() && !newacc.is_empty() {
" "
" ->"
} else {
""
}

View file

@ -150,7 +150,7 @@ fn real_main() -> Result<()> {
writeln!(
out,
"{header}: {size_old} {size_new}",
"{header}: {size_old} -> {size_new}",
header = "SIZE".bold(),
size_old = size_old.red(),
size_new = size_new.green(),