diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-19 20:28:51 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-19 20:28:51 +0100 |
commit | 4d3f2fd0e83a9412e8e42a0884047bfb0cfc4ee4 (patch) | |
tree | 2db0942afda551fc5a8d4c4a46a581df597cc92c | |
parent | 4249c2e09579d6454e7572111e44c284190a2c8f (diff) |
style: cargo formatter
-rw-r--r-- | src/commit/models.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commit/models.rs b/src/commit/models.rs index 987bcd2..95d2efa 100644 --- a/src/commit/models.rs +++ b/src/commit/models.rs @@ -116,7 +116,10 @@ impl Commit { commit.author_email, commit.author_name.replace("\\'", "'").replace("'", "\\'"), commit.committer_email, - commit.committer_name.replace("\\'", "'").replace("'", "\\'"), + commit + .committer_name + .replace("\\'", "'") + .replace("'", "\\'"), commit.repository_url )[..] } |