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 5d0be0d commit 19e0505Copy full SHA for 19e0505
src/librustdoc/html/render.rs
@@ -763,7 +763,7 @@ fn write_shared(cx: &Context,
763
// going on). If they're in different crates then the crate defining
764
// the trait will be interested in our implementation.
765
if imp.def_id.krate == did.krate { continue }
766
- write!(implementors, r#""{}","#, imp.impl_).unwrap();
+ write!(implementors, "{},", as_json(&imp.impl_.to_string())).unwrap();
767
}
768
implementors.push_str("];");
769
0 commit comments