We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5654ea commit 9a9f7a9Copy full SHA for 9a9f7a9
src/librustdoc/html/static/js/search.js
@@ -1267,7 +1267,9 @@ function initSearch(rawSearchIndex) {
1267
}
1268
} else {
1269
push(fnType.name, fnType.highlighted);
1270
- if (fnType.generics && fnType.generics.some(isTransitivelyHighlighted)) {
+ if (fnType.generics &&
1271
+ (fnType.generics.some(isTransitivelyHighlighted) || fnType.implDisambiguator !== null)
1272
+ ) {
1273
pushNotHighlighted("<");
1274
formatTypeList(fnType.generics, ", ");
1275
pushNotHighlighted(">");
0 commit comments