We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94c556 commit b58b2baCopy full SHA for b58b2ba
src/uu/top/src/header.rs
@@ -78,9 +78,9 @@ fn uptime() -> String {
78
));
79
}
80
if up_hours > 0 {
81
- res.push_str(&format!("{}:{:0>2}, ", up_hours, up_minutes));
+ res.push_str(&format!("{}:{:0>2}", up_hours, up_minutes));
82
} else {
83
- res.push_str(&format!("{} min, ", up_minutes));
+ res.push_str(&format!("{} min", up_minutes));
84
85
86
res
0 commit comments