@@ -430,7 +430,7 @@ fn item_module(w: &mut Buffer, cx: &mut Context<'_>, item: &clean::Item, items:
430430 last_section = Some ( my_section) ;
431431 write ! (
432432 w,
433- "<h2 id=\" {id}\" class=\" small- section-header\" >\
433+ "<h2 id=\" {id}\" class=\" section-header\" >\
434434 <a href=\" #{id}\" >{name}</a>\
435435 </h2>{ITEM_TABLE_OPEN}",
436436 id = cx. derive_id( my_section. id( ) ) ,
@@ -827,7 +827,7 @@ fn item_trait(w: &mut Buffer, cx: &mut Context<'_>, it: &clean::Item, t: &clean:
827827 fn write_small_section_header ( w : & mut Buffer , id : & str , title : & str , extra_content : & str ) {
828828 write ! (
829829 w,
830- "<h2 id=\" {0}\" class=\" small- section-header\" >\
830+ "<h2 id=\" {0}\" class=\" section-header\" >\
831831 {1}<a href=\" #{0}\" class=\" anchor\" >§</a>\
832832 </h2>{2}",
833833 id, title, extra_content
@@ -1260,7 +1260,7 @@ fn item_type_alias(w: &mut Buffer, cx: &mut Context<'_>, it: &clean::Item, t: &c
12601260 if let Some ( inner_type) = & t. inner_type {
12611261 write ! (
12621262 w,
1263- "<h2 id=\" aliased-type\" class=\" small- section-header\" >\
1263+ "<h2 id=\" aliased-type\" class=\" section-header\" >\
12641264 Aliased Type<a href=\" #aliased-type\" class=\" anchor\" >§</a></h2>"
12651265 ) ;
12661266
@@ -1685,7 +1685,7 @@ fn item_variants(
16851685 let tcx = cx. tcx ( ) ;
16861686 write ! (
16871687 w,
1688- "<h2 id=\" variants\" class=\" variants small- section-header\" >\
1688+ "<h2 id=\" variants\" class=\" variants section-header\" >\
16891689 Variants{}<a href=\" #variants\" class=\" anchor\" >§</a>\
16901690 </h2>\
16911691 {}\
@@ -1772,7 +1772,7 @@ fn item_variants(
17721772 write ! (
17731773 w,
17741774 "<div class=\" sub-variant-field\" >\
1775- <span id=\" {id}\" class=\" small- section-header\" >\
1775+ <span id=\" {id}\" class=\" section-header\" >\
17761776 <a href=\" #{id}\" class=\" anchor field\" >§</a>\
17771777 <code>{f}: {t}</code>\
17781778 </span>",
@@ -1929,7 +1929,7 @@ fn item_fields(
19291929 if fields. peek ( ) . is_some ( ) {
19301930 write ! (
19311931 w,
1932- "<h2 id=\" fields\" class=\" fields small- section-header\" >\
1932+ "<h2 id=\" fields\" class=\" fields section-header\" >\
19331933 {}{}<a href=\" #fields\" class=\" anchor\" >§</a>\
19341934 </h2>\
19351935 {}",
@@ -1943,7 +1943,7 @@ fn item_fields(
19431943 let id = cx. derive_id ( format ! ( "{typ}.{field_name}" , typ = ItemType :: StructField ) ) ;
19441944 write ! (
19451945 w,
1946- "<span id=\" {id}\" class=\" {item_type} small- section-header\" >\
1946+ "<span id=\" {id}\" class=\" {item_type} section-header\" >\
19471947 <a href=\" #{id}\" class=\" anchor field\" >§</a>\
19481948 <code>{field_name}: {ty}</code>\
19491949 </span>",
0 commit comments