about summary refs log tree commit diff
path: root/tests/rustdoc/compiler-derive-proc-macro.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-11-29 13:38:56 -0700
committerMichael Howell <michael@notriddle.com>2023-11-29 13:40:07 -0700
commitc910a49b05ed2edac0a989efa53e6468148bf0f7 (patch)
treeeb53b88b72e78b327099c13db036d18530cc35a5 /tests/rustdoc/compiler-derive-proc-macro.rs
parentb10cfcd65fd7f7b1ab9beb34798b2108de003452 (diff)
downloadrust-c910a49b05ed2edac0a989efa53e6468148bf0f7.tar.gz
rust-c910a49b05ed2edac0a989efa53e6468148bf0f7.zip
rustdoc: remove small from `small-section-header`
There's no such thing as a big section header, so I don't know why the
name was used.
Diffstat (limited to 'tests/rustdoc/compiler-derive-proc-macro.rs')
-rw-r--r--tests/rustdoc/compiler-derive-proc-macro.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc/compiler-derive-proc-macro.rs b/tests/rustdoc/compiler-derive-proc-macro.rs
index 489ec924c1f..1c3867ced9b 100644
--- a/tests/rustdoc/compiler-derive-proc-macro.rs
+++ b/tests/rustdoc/compiler-derive-proc-macro.rs
@@ -5,9 +5,9 @@
 // @has 'foo/index.html'
 // Each compiler builtin proc-macro has a trait equivalent so we should have
 // a trait section as well.
-// @count - '//*[@id="main-content"]//*[@class="small-section-header"]' 2
-// @has - '//*[@id="main-content"]//*[@class="small-section-header"]' 'Traits'
-// @has - '//*[@id="main-content"]//*[@class="small-section-header"]' 'Derive Macros'
+// @count - '//*[@id="main-content"]//*[@class="section-header"]' 2
+// @has - '//*[@id="main-content"]//*[@class="section-header"]' 'Traits'
+// @has - '//*[@id="main-content"]//*[@class="section-header"]' 'Derive Macros'
 
 // Now checking the correct file is generated as well.
 // @has 'foo/derive.Clone.html'