Skip to content

Commit 3a7e247

Browse files
Fix for older JS versions
1 parent 026c749 commit 3a7e247

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/rustdoc-js/tester.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function lookForEntry(entry, data) {
115115
if (!entry.hasOwnProperty(key)) {
116116
continue;
117117
}
118-
let value = data[i][key];
118+
var value = data[i][key];
119119
// To make our life easier, if there is a "parent" type, we add it to the path.
120120
if (key === 'path' && data[i]['parent'] !== undefined) {
121121
if (value.length > 0) {

0 commit comments

Comments
 (0)