mirror of
https://github.com/tiffany352/rink-rs
synced 2024-11-10 13:44:15 +00:00
Fix unevenly spaced = in definition output
This commit is contained in:
parent
0576611968
commit
1e26f13bee
1 changed files with 1 additions and 1 deletions
|
@ -520,7 +520,7 @@ impl Context {
|
|||
};
|
||||
let base = Number::unit_to_string(&res.1);
|
||||
let base = if base.len() > 0 {
|
||||
format!("= {}", base)
|
||||
format!(" = {}", base)
|
||||
} else {
|
||||
format!("")
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue