From c20cd8fac97fe4d4594d6f78b3adb0e9b171c3bf Mon Sep 17 00:00:00 2001 From: Piotr Czarnecki Date: Mon, 8 Feb 2016 13:05:16 +0100 Subject: [PATCH] Use consistent syntax --- src/libstd/collections/hash/table.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libstd/collections/hash/table.rs b/src/libstd/collections/hash/table.rs index e3acbc96fda..3c61faae8ea 100644 --- a/src/libstd/collections/hash/table.rs +++ b/src/libstd/collections/hash/table.rs @@ -466,7 +466,7 @@ impl FullBucket where M: Deref> + DerefM } } -impl<'t, K, V, M: Deref> + 't> FullBucket { +impl<'t, K, V, M> FullBucket where M: Deref> + 't { /// Exchange a bucket state for immutable references into the table. /// Because the underlying reference to the table is also consumed, /// no further changes to the structure of the table are possible; @@ -480,7 +480,7 @@ impl<'t, K, V, M: Deref> + 't> FullBucket { } } -impl<'t, K, V, M: Deref> + DerefMut + 't> FullBucket { +impl<'t, K, V, M> FullBucket where M: Deref> + DerefMut + 't { /// This works similarly to `into_refs`, exchanging a bucket state /// for mutable references into the table. pub fn into_mut_refs(self) -> (&'t mut K, &'t mut V) { @@ -491,7 +491,7 @@ impl<'t, K, V, M: Deref> + DerefMut + 't> FullBucket>> GapThenFull { +impl GapThenFull where M: Deref> { #[inline] pub fn full(&self) -> &FullBucket { &self.full