aboutsummaryrefslogtreecommitdiff
path: root/src/utils/message_builder.rs
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2018-07-15 23:32:50 -0700
committerZeyla Hellyer <[email protected]>2018-07-15 23:33:59 -0700
commit9da766976929417c4b8f487f8ec05b6f8b3f43ef (patch)
tree83cfae143ad7c1c4423d5ac35bf71d6e0bc6b882 /src/utils/message_builder.rs
parentSupport multiple prefixes for command-groups (#343) (diff)
downloadserenity-9da766976929417c4b8f487f8ec05b6f8b3f43ef.tar.xz
serenity-9da766976929417c4b8f487f8ec05b6f8b3f43ef.zip
Fix some clippy lints
Some lints were not resolved due to causing API changes. Most lints in the framework were left unfixed.
Diffstat (limited to 'src/utils/message_builder.rs')
-rw-r--r--src/utils/message_builder.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/message_builder.rs b/src/utils/message_builder.rs
index 15c0b07..7bbfddf 100644
--- a/src/utils/message_builder.rs
+++ b/src/utils/message_builder.rs
@@ -205,11 +205,11 @@ impl MessageBuilder {
/// ```
#[inline]
pub fn push<D: I>(self, content: D) -> Self {
- self._push(content.into().to_string())
+ self._push(&content.into().to_string())
}
- fn _push(mut self, content: String) -> Self {
- self.0.push_str(&content);
+ fn _push(mut self, content: &str) -> Self {
+ self.0.push_str(content);
self
}