We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74b7599 commit e9d52e3Copy full SHA for e9d52e3
src/librustdoc/html/static/js/rustdoc.d.ts
@@ -257,7 +257,7 @@ declare namespace rustdoc {
257
ty: number,
258
type?: FunctionSearchType,
259
paramNames?: string[],
260
- displayTypeSignature: Promise<rustdoc.DisplayTypeSignature> | null,
+ displayTypeSignature: Promise<rustdoc.DisplayTypeSignature> | undefined,
261
item: Row,
262
dontValidate?: boolean,
263
}
src/librustdoc/html/static/js/search.js
@@ -2793,7 +2793,7 @@ class DocSearch {
2793
displayPath: pathSplitter(res[0]),
2794
fullPath: "",
2795
href: "",
2796
- displayTypeSignature: null,
+ displayTypeSignature: undefined,
2797
}, this.searchIndex[result.id]);
2798
2799
// To be sure than it some items aren't considered as duplicate.
0 commit comments