aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-12-16 19:16:19 +0100
committerJorge Aparicio <jorge@japaric.io>2018-12-16 19:16:19 +0100
commitd35f5bc0b0453c2e98b8398d36bd2ba553edce45 (patch)
treecadf6359329573a79e937afcef2972f2cf01f6b4 /src
parent56d09a12dd645166af7d6def6b95bf71ae7962bd (diff)
use edition idioms in the top crate
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 943413f..213037b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -295,7 +295,7 @@ impl<'a, T> fmt::Debug for Exclusive<'a, T>
where
T: fmt::Debug,
{
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
(**self).fmt(f)
}
}
@@ -304,7 +304,7 @@ impl<'a, T> fmt::Display for Exclusive<'a, T>
where
T: fmt::Display,
{
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
(**self).fmt(f)
}
}