Skip to content

Commit

Permalink
rustdoc: Do not deduplicate items when their parents differ.
Browse files Browse the repository at this point in the history
Fixes #17332.
  • Loading branch information
lifthrasiir committed Dec 4, 2014
1 parent daa0745 commit a12b839
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librustdoc/html/static/main.js
Expand Up @@ -313,7 +313,8 @@
for (var i = results.length - 1; i > 0; i -= 1) {
if (results[i].word === results[i - 1].word &&
results[i].item.ty === results[i - 1].item.ty &&
results[i].item.path === results[i - 1].item.path)
results[i].item.path === results[i - 1].item.path &&
(results[i].item.parent || {}).name === (results[i - 1].item.parent || {}).name)
{
results[i].id = -1;
}
Expand Down

0 comments on commit a12b839

Please sign in to comment.