mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
use format! instead of preallocating
this is more efficient apparently
This commit is contained in:
parent
07c69c1e74
commit
8f0721f00a
1 changed files with 1 additions and 7 deletions
|
@ -71,11 +71,5 @@ pub fn format_relative_time(timestamp: i64, timezone_offset: i32) -> String {
|
||||||
"from now"
|
"from now"
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut relative_time = String::with_capacity(value.len() + 1 + unit.len() + 1 + label.len());
|
format!("{value} {unit} {label}")
|
||||||
relative_time.push_str(&value);
|
|
||||||
relative_time.push(' ');
|
|
||||||
relative_time.push_str(unit);
|
|
||||||
relative_time.push(' ');
|
|
||||||
relative_time.push_str(label);
|
|
||||||
relative_time
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue