Skip to content

Commit bf8491e

Browse files
committed
Auto merge of #64904 - ollie27:rustdoc_logo, r=Mark-Simulacrum
rustdoc: Fix default logo filename This was a typo made in #64443. It's the reason the logo is missing on the [nightly docs](https://doc.rust-lang.org/nightly/std/). r? @Mark-Simulacrum
2 parents bd9a0aa + dc29531 commit bf8491e

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)