summaryrefslogtreecommitdiff
path: root/src/tag.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag.rs')
-rw-r--r--src/tag.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.rs b/src/tag.rs
index 5a6b4df..a66e0a1 100644
--- a/src/tag.rs
+++ b/src/tag.rs
@@ -86,7 +86,7 @@ fn parse_template(t: &str) -> Result<Vec<Pattern>, BumperError> {
// There was a previous pattern. Is it a fixed string?
if let Pattern::Fixed(a) = last {
let mut ab = a.clone();
- ab.push_str(&b);
+ ab.push_str(b);
result.push(Pattern::Fixed(ab))
} else {
result.push(last);