Skip to content

Commit 2d0ef3a

Browse files
committed
use spaces, not tabs
1 parent ad8890f commit 2d0ef3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librustdoc/html/static/js/search.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -2815,7 +2815,7 @@ ${item.displayPath}<span class="${type}">${name}</span>\
28152815
}
28162816
}
28172817

2818-
let crates = "";
2818+
let crates = "";
28192819

28202820
let output = `<h1 class="search-results-title">Results${crates}</h1>`;
28212821
if (results.query.error !== null) {
@@ -3879,9 +3879,9 @@ ${item.displayPath}<span class="${type}">${name}</span>\
38793879
}
38803880

38813881

3882-
console.log(rawSearchIndex);
3883-
let crates = "";
3884-
if (rawSearchIndex.size > 1) {
3882+
console.log(rawSearchIndex);
3883+
let crates = "";
3884+
if (rawSearchIndex.size > 1) {
38853885
crates = "<div id=\"crate-search-div\"><select id=\"crate-search\">" +
38863886
"<option value=\"all crates\" selected>all crates</option>";
38873887
for (const c of rawSearchIndex.keys()) {

0 commit comments

Comments
 (0)