@@ -3413,8 +3413,8 @@ fn render_assoc_items(
3413
3413
write ! (
3414
3414
w,
3415
3415
"\
3416
- <h2 id='methods ' class='small-section-header'>\
3417
- Methods <a href='#methods ' class='anchor'></a>\
3416
+ <h2 id='implementations ' class='small-section-header'>\
3417
+ Implementations <a href='#implementations ' class='anchor'></a>\
3418
3418
</h2>\
3419
3419
"
3420
3420
) ;
@@ -3475,10 +3475,10 @@ fn render_assoc_items(
3475
3475
write ! (
3476
3476
w,
3477
3477
"\
3478
- <h2 id='implementations' class='small-section-header'>\
3479
- Trait Implementations<a href='#implementations' class='anchor'></a>\
3478
+ <h2 id='trait- implementations' class='small-section-header'>\
3479
+ Trait Implementations<a href='#trait- implementations' class='anchor'></a>\
3480
3480
</h2>\
3481
- <div id='implementations-list'>{}</div>",
3481
+ <div id='trait- implementations-list'>{}</div>",
3482
3482
impls
3483
3483
) ;
3484
3484
}
@@ -4097,8 +4097,8 @@ fn sidebar_assoc_items(it: &clean::Item) -> String {
4097
4097
ret. sort ( ) ;
4098
4098
if !ret. is_empty ( ) {
4099
4099
out. push_str ( & format ! (
4100
- "<a class=\" sidebar-title\" href=\" #methods \" >Methods\
4101
- </a> <div class=\" sidebar-links\" >{}</div>",
4100
+ "<a class=\" sidebar-title\" href=\" #implementations \" >Methods</a> \
4101
+ <div class=\" sidebar-links\" >{}</div>",
4102
4102
ret. join( "" )
4103
4103
) ) ;
4104
4104
}
@@ -4191,24 +4191,24 @@ fn sidebar_assoc_items(it: &clean::Item) -> String {
4191
4191
4192
4192
if !concrete_format. is_empty ( ) {
4193
4193
out. push_str (
4194
- "<a class=\" sidebar-title\" href=\" #implementations\" >\
4195
- Trait Implementations</a>",
4194
+ "<a class=\" sidebar-title\" href=\" #trait- implementations\" >\
4195
+ Trait Implementations</a>",
4196
4196
) ;
4197
4197
out. push_str ( & format ! ( "<div class=\" sidebar-links\" >{}</div>" , concrete_format) ) ;
4198
4198
}
4199
4199
4200
4200
if !synthetic_format. is_empty ( ) {
4201
4201
out. push_str (
4202
4202
"<a class=\" sidebar-title\" href=\" #synthetic-implementations\" >\
4203
- Auto Trait Implementations</a>",
4203
+ Auto Trait Implementations</a>",
4204
4204
) ;
4205
4205
out. push_str ( & format ! ( "<div class=\" sidebar-links\" >{}</div>" , synthetic_format) ) ;
4206
4206
}
4207
4207
4208
4208
if !blanket_format. is_empty ( ) {
4209
4209
out. push_str (
4210
4210
"<a class=\" sidebar-title\" href=\" #blanket-implementations\" >\
4211
- Blanket Implementations</a>",
4211
+ Blanket Implementations</a>",
4212
4212
) ;
4213
4213
out. push_str ( & format ! ( "<div class=\" sidebar-links\" >{}</div>" , blanket_format) ) ;
4214
4214
}
0 commit comments