Skip to content

Commit b58b2ba

Browse files
committed
typo
1 parent d94c556 commit b58b2ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uu/top/src/header.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ fn uptime() -> String {
7878
));
7979
}
8080
if up_hours > 0 {
81-
res.push_str(&format!("{}:{:0>2}, ", up_hours, up_minutes));
81+
res.push_str(&format!("{}:{:0>2}", up_hours, up_minutes));
8282
} else {
83-
res.push_str(&format!("{} min, ", up_minutes));
83+
res.push_str(&format!("{} min", up_minutes));
8484
}
8585

8686
res

0 commit comments

Comments
 (0)