about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-11 09:51:43 -0700
committerbors <bors@rust-lang.org>2014-05-11 09:51:43 -0700
commitc690bda159285c7a5e17d39df4b76a92d115c9fd (patch)
tree35284780669cd0067288bc10beece3649d20672a
parent032510bae206a789ce9a18f1c8d692f6120591ab (diff)
parent30927f15b76e68ae9f08c463041f77b72c37095e (diff)
downloadrust-c690bda159285c7a5e17d39df4b76a92d115c9fd.tar.gz
rust-c690bda159285c7a5e17d39df4b76a92d115c9fd.zip
auto merge of #14101 : alexcrichton/rust/issue-14095, r=kballard
When the values in html::item_type were updated, the JS definitions were
accidentally not updated as well.

Closes #14095
-rw-r--r--src/librustdoc/html/static/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/html/static/main.js b/src/librustdoc/html/static/main.js
index 9243f72dab7..d7101087ac4 100644
--- a/src/librustdoc/html/static/main.js
+++ b/src/librustdoc/html/static/main.js
@@ -514,9 +514,9 @@
         // `rustdoc::html::item_type::ItemType` type in Rust.
         var itemTypes = ["mod",
                          "struct",
-                         "enum",
+                         "type",
                          "fn",
-                         "typedef",
+                         "type",
                          "static",
                          "trait",
                          "impl",