aboutsummaryrefslogtreecommitdiffstats
path: root/components/hyper_serde/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/hyper_serde/lib.rs')
-rw-r--r--components/hyper_serde/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/hyper_serde/lib.rs b/components/hyper_serde/lib.rs
index 22f79c8ad65..bb48b1c47e5 100644
--- a/components/hyper_serde/lib.rs
+++ b/components/hyper_serde/lib.rs
@@ -531,7 +531,7 @@ impl<'a> Serialize for Ser<'a, Mime> {
where
S: Serializer,
{
- serializer.serialize_str(&self.v.as_ref())
+ serializer.serialize_str(self.v.as_ref())
}
}