We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20040fa commit 153eb72Copy full SHA for 153eb72
src/librustdoc/html/render/mod.rs
@@ -1546,7 +1546,7 @@ fn render_impl(
1546
let aliases = if aliases.is_empty() {
1547
String::new()
1548
} else {
1549
- format!(" aliases=\"{}\"", aliases.join(","))
+ format!(" data-aliases=\"{}\"", aliases.join(","))
1550
};
1551
if let Some(use_absolute) = use_absolute {
1552
write!(
src/librustdoc/html/static/main.js
@@ -834,7 +834,7 @@ function hideThemeButtonState() {
834
// (like "Send" and "Sync").
835
var inlined_types = new Set();
836
onEachLazy(synthetic_implementors.getElementsByClassName("impl"), function(el) {
837
- var aliases = el.getAttribute("aliases");
+ var aliases = el.getAttribute("data-aliases");
838
if (!aliases) {
839
return;
840
}
0 commit comments