rollup merge of #19515: lifthrasiir/rustdoc-wrong-dedup

Fixes #17332.
This commit is contained in:
Corey Richardson 2014-12-05 10:07:44 -08:00
commit 4e492cbaf8

View File

@ -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;
}