Skip to content

Commit d870dd8

Browse files
search.js: fix stray await
Co-authored-by: Michael Howell <[email protected]>
1 parent 1adb51f commit d870dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@ class DocSearch {
19131913
this.getPathData(entry.exactModulePath) :
19141914
null,
19151915
buildParentLike("parent"),
1916-
await buildParentLike("traitParent"),
1916+
buildParentLike("traitParent"),
19171917
entry ? this.getName(entry.krate) : "",
19181918
]);
19191919
const crate = crateOrNull === null ? "" : crateOrNull;

0 commit comments

Comments
 (0)