We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2bc09e commit f0db2cfCopy full SHA for f0db2cf
src/librustdoc/html/static/main.js
@@ -1267,12 +1267,10 @@
1267
type = itemTypes[item.ty];
1268
1269
if (item.is_alias !== true) {
1270
- var fullPath = item.displayPath + name;
1271
-
1272
- if (duplicates[fullPath]) {
+ if (duplicates[item.fullPath]) {
1273
return;
1274
}
1275
- duplicates[fullPath] = true;
+ duplicates[item.fullPath] = true;
1276
1277
length += 1;
1278
0 commit comments