Skip to content

Commit

Permalink
rustdoc: Fix default logo filename
Browse files Browse the repository at this point in the history
  • Loading branch information
ollie27 committed Sep 29, 2019
1 parent 06c6894 commit dc29531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/render.rs
Expand Up @@ -574,7 +574,7 @@ fn write_shared(

let write = |p, c| { cx.shared.fs.write(p, c) };
if (*cx.shared).layout.logo.is_empty() {
write(cx.path("rust-log.png"), static_files::RUST_LOGO)?;
write(cx.path("rust-logo.png"), static_files::RUST_LOGO)?;
}
if (*cx.shared).layout.favicon.is_empty() {
write(cx.path("favicon.ico"), static_files::RUST_FAVICON)?;
Expand Down

0 comments on commit dc29531

Please sign in to comment.