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 96f5654 commit 8478349Copy full SHA for 8478349
src/rustdoc/markdown_pass.rs
@@ -250,7 +250,6 @@ fn write_nmod(ctxt: ctxt, doc: doc::nmoddoc) {
250
#[test]
251
fn should_write_native_mods() {
252
let markdown = test::render("#[doc = \"test\"] native mod a { }");
253
- log(error, markdown);
254
assert str::contains(markdown, "Native module `a`");
255
assert str::contains(markdown, "test");
256
}
@@ -764,7 +763,6 @@ fn write_impl(ctxt: ctxt, doc: doc::impldoc) {
764
763
765
fn should_write_impl_header() {
766
let markdown = test::render("impl i for int { fn a() { } }");
767
768
assert str::contains(markdown, "## Implementation `i for int`");
769
770
0 commit comments