about summary refs log tree commit diff
path: root/src/test/rustdoc/nested-modules.rs
diff options
context:
space:
mode:
authorNoah Lev <camelidcamel@gmail.com>2022-08-12 00:44:07 -0400
committerNoah Lev <camelidcamel@gmail.com>2022-08-13 00:52:16 -0400
commitb34e2404fd375e1bc18c1191639e4e67bdbc7d19 (patch)
treeeddb11bee894f0a05292ea6a5597e8289e0c69bb /src/test/rustdoc/nested-modules.rs
parent9db6061d64fbec7470f4e4419d16c47fe9aeb322 (diff)
downloadrust-b34e2404fd375e1bc18c1191639e4e67bdbc7d19.tar.gz
rust-b34e2404fd375e1bc18c1191639e4e67bdbc7d19.zip
Update `@!has` name in tests
Diffstat (limited to 'src/test/rustdoc/nested-modules.rs')
-rw-r--r--src/test/rustdoc/nested-modules.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/rustdoc/nested-modules.rs b/src/test/rustdoc/nested-modules.rs
index 29f317d0546..12234d2cf7e 100644
--- a/src/test/rustdoc/nested-modules.rs
+++ b/src/test/rustdoc/nested-modules.rs
@@ -15,14 +15,14 @@ mod a_module {
         pub use a_nested_module::a_nested_public_function as another_nested_public_function;
     }
 
-    // @!has aCrate/a_nested_module/index.html 'yet_another_nested_public_function'
+    // @!hasraw aCrate/a_nested_module/index.html 'yet_another_nested_public_function'
     pub use a_nested_module::a_nested_public_function as yet_another_nested_public_function;
 
-    // @!has aCrate/a_nested_module/index.html 'one_last_nested_public_function'
+    // @!hasraw aCrate/a_nested_module/index.html 'one_last_nested_public_function'
     pub use a_nested_module::another_nested_public_function as one_last_nested_public_function;
 }
 
-// @!has aCrate/index.html 'a_module'
+// @!hasraw aCrate/index.html 'a_module'
 // @has aCrate/index.html '//a[@href="a_nested_module/index.html"]' 'a_nested_module'
 pub use a_module::a_nested_module;
 
@@ -36,7 +36,7 @@ pub use a_module::{
 };
 
 // @has aCrate/index.html '//a[@href="fn.private_function.html"]' 'private_function'
-// @!has aCrate/fn.private_function.html 'a_module'
+// @!hasraw aCrate/fn.private_function.html 'a_module'
 // @has aCrate/index.html '//a[@href="fn.other_private_function.html"]' 'other_private_function'
-// @!has aCrate/fn.other_private_function.html 'a_module'
+// @!hasraw aCrate/fn.other_private_function.html 'a_module'
 pub use a_module::{other_private_function, private_function};