Fix unevenly spaced = in definition output

This commit is contained in:
Tiffany Bennett 2016-08-21 22:35:21 -04:00
parent 0576611968
commit 1e26f13bee

View file

@ -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!("")
};