File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1045,7 +1045,7 @@ impl GenericBound {
1045
1045
GenericBound :: TraitBound ( PolyTrait {
1046
1046
trait_ : ResolvedPath {
1047
1047
path,
1048
- typarams : None ,
1048
+ param_names : None ,
1049
1049
did,
1050
1050
is_generic : false ,
1051
1051
} ,
@@ -1469,7 +1469,7 @@ impl<'tcx> Clean<GenericParamDef> for ty::GenericParamDef {
1469
1469
( self . name . to_string ( ) , GenericParamDefKind :: Lifetime )
1470
1470
}
1471
1471
ty:: GenericParamDefKind :: Type { has_default, .. } => {
1472
- cx. renderinfo . borrow_mut ( ) . external_typarams
1472
+ cx. renderinfo . borrow_mut ( ) . external_param_names
1473
1473
. insert ( self . def_id , self . name . clean ( cx) ) ;
1474
1474
let default = if has_default {
1475
1475
Some ( cx. tcx . type_of ( self . def_id ) . clean ( cx) )
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ pub struct Cache {
368
368
pub struct RenderInfo {
369
369
pub inlined : FxHashSet < DefId > ,
370
370
pub external_paths : crate :: core:: ExternalPaths ,
371
- pub external_typarams : FxHashMap < DefId , String > ,
371
+ pub external_param_names : FxHashMap < DefId , String > ,
372
372
pub exact_paths : FxHashMap < DefId , Vec < String > > ,
373
373
pub access_levels : AccessLevels < DefId > ,
374
374
pub deref_trait_did : Option < DefId > ,
@@ -601,7 +601,7 @@ pub fn run(mut krate: clean::Crate,
601
601
let RenderInfo {
602
602
inlined : _,
603
603
external_paths,
604
- external_typarams ,
604
+ external_param_names ,
605
605
exact_paths,
606
606
access_levels,
607
607
deref_trait_did,
You can’t perform that action at this time.
0 commit comments