@@ -101,8 +101,8 @@ impl PartialEq<Symbol> for Path {
101101 }
102102}
103103
104- impl < CTX : rustc_span:: HashStableContext > HashStable < CTX > for Path {
105- fn hash_stable ( & self , hcx : & mut CTX , hasher : & mut StableHasher ) {
104+ impl < Ctx : rustc_span:: HashStableContext > HashStable < Ctx > for Path {
105+ fn hash_stable ( & self , hcx : & mut Ctx , hasher : & mut StableHasher ) {
106106 self . segments . len ( ) . hash_stable ( hcx, hasher) ;
107107 for segment in & self . segments {
108108 segment. ident . hash_stable ( hcx, hasher) ;
@@ -1680,11 +1680,11 @@ impl AttrArgs {
16801680 }
16811681}
16821682
1683- impl < CTX > HashStable < CTX > for AttrArgs
1683+ impl < Ctx > HashStable < Ctx > for AttrArgs
16841684where
1685- CTX : crate :: HashStableContext ,
1685+ Ctx : crate :: HashStableContext ,
16861686{
1687- fn hash_stable ( & self , ctx : & mut CTX , hasher : & mut StableHasher ) {
1687+ fn hash_stable ( & self , ctx : & mut Ctx , hasher : & mut StableHasher ) {
16881688 mem:: discriminant ( self ) . hash_stable ( ctx, hasher) ;
16891689 match self {
16901690 AttrArgs :: Empty => { }
@@ -1716,11 +1716,11 @@ impl DelimArgs {
17161716 }
17171717}
17181718
1719- impl < CTX > HashStable < CTX > for DelimArgs
1719+ impl < Ctx > HashStable < Ctx > for DelimArgs
17201720where
1721- CTX : crate :: HashStableContext ,
1721+ Ctx : crate :: HashStableContext ,
17221722{
1723- fn hash_stable ( & self , ctx : & mut CTX , hasher : & mut StableHasher ) {
1723+ fn hash_stable ( & self , ctx : & mut Ctx , hasher : & mut StableHasher ) {
17241724 let DelimArgs { dspan, delim, tokens } = self ;
17251725 dspan. hash_stable ( ctx, hasher) ;
17261726 delim. hash_stable ( ctx, hasher) ;
0 commit comments