Skip to content

Commit dc29531

Browse files
committed
rustdoc: Fix default logo filename
1 parent 06c6894 commit dc29531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/render.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ fn write_shared(
574574

575575
let write = |p, c| { cx.shared.fs.write(p, c) };
576576
if (*cx.shared).layout.logo.is_empty() {
577-
write(cx.path("rust-log.png"), static_files::RUST_LOGO)?;
577+
write(cx.path("rust-logo.png"), static_files::RUST_LOGO)?;
578578
}
579579
if (*cx.shared).layout.favicon.is_empty() {
580580
write(cx.path("favicon.ico"), static_files::RUST_FAVICON)?;

0 commit comments

Comments
 (0)