about summary refs log tree commit diff
path: root/src/librustdoc/html/static
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2019-01-14 00:46:11 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2019-01-17 01:41:01 +0100
commitd405606c3bc499d215ff0bcb6a56080ff4bf07d4 (patch)
tree270c00d177c03afc82cbf924fb8f3635eb8012df /src/librustdoc/html/static
parent2e8fd44598f730d6a79e5fdabefcb26034fc093a (diff)
downloadrust-d405606c3bc499d215ff0bcb6a56080ff4bf07d4.tar.gz
rust-d405606c3bc499d215ff0bcb6a56080ff4bf07d4.zip
End fixing search index minification
Diffstat (limited to 'src/librustdoc/html/static')
-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 ceadbd5afac..82604cc7ad8 100644
--- a/src/librustdoc/html/static/main.js
+++ b/src/librustdoc/html/static/main.js
@@ -1555,10 +1555,10 @@ if (!DOMTokenList.prototype.remove) {
                 //              (String) description,
                 //              (Number | null) the parent path index to `paths`]
                 //              (Object | null) the type of the function (if any)
-                var items = rawSearchIndex[crate].items;
+                var items = rawSearchIndex[crate].i;
                 // an array of [(Number) item type,
                 //              (String) name]
-                var paths = rawSearchIndex[crate].paths;
+                var paths = rawSearchIndex[crate].p;
 
                 // convert `paths` into an object form
                 var len = paths.length;