use format! instead of preallocating

this is more efficient apparently
This commit is contained in:
Nik Revenco 2025-03-24 16:07:19 +00:00
parent 07c69c1e74
commit 8f0721f00a

View file

@ -71,11 +71,5 @@ pub fn format_relative_time(timestamp: i64, timezone_offset: i32) -> String {
"from now"
};
let mut relative_time = String::with_capacity(value.len() + 1 + unit.len() + 1 + label.len());
relative_time.push_str(&value);
relative_time.push(' ');
relative_time.push_str(unit);
relative_time.push(' ');
relative_time.push_str(label);
relative_time
format!("{value} {unit} {label}")
}