diff options
| author | Yuvi Panda <yuvipanda@gmail.com> | 2021-05-10 03:03:57 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-09 22:33:57 +0100 |
| commit | f0463326fa456c96c78e4d3f78106d0312fec588 (patch) | |
| tree | 3797a89845bc65c799333c5037f228f10b5959ea /src | |
| parent | Fix sync (#95) (diff) | |
| download | atuin-f0463326fa456c96c78e4d3f78106d0312fec588.zip | |
Use format! instead of string concat (#94)
Cleaner
Diffstat (limited to 'src')
| -rw-r--r-- | src/command/search.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/search.rs b/src/command/search.rs index e0763822..f8a4a1ba 100644 --- a/src/command/search.rs +++ b/src/command/search.rs @@ -94,7 +94,7 @@ impl State { let (duration, mut ago) = durations[i].clone(); while (duration.len() + ago.len()) < max_length { - ago = " ".to_owned() + ago.as_str(); + ago = format!(" {}", ago); } let duration = Span::styled( |
