about summary refs log tree commit diff
path: root/src/librustdoc
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2019-09-29 22:17:03 +0100
committerOliver Middleton <olliemail27@gmail.com>2019-09-29 22:17:03 +0100
commitdc295318fc6ef36a435a19693374112d6ca2aa42 (patch)
treeaacc62eea3f361a2062bb5eaa0f22622678de224 /src/librustdoc
parent06c68947ad88f22a8342fe6b54dc0fe54de6e011 (diff)
rustdoc: Fix default logo filename
Diffstat (limited to 'src/librustdoc')
-rw-r--r--src/librustdoc/html/render.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs
index 301dddbbfb9..1ff71a0024b 100644
--- a/src/librustdoc/html/render.rs
+++ b/src/librustdoc/html/render.rs
@@ -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)?;