1
Fork 0

rustdoc: Remove a pointer that's no longer needed

This commit is contained in:
Brian Anderson 2012-02-24 13:53:28 -08:00
parent fdea1c414c
commit 681e5beac4
9 changed files with 24 additions and 25 deletions

View file

@ -49,7 +49,7 @@ fn moddoc_from_mod(
) -> doc::moddoc {
{
item: itemdoc,
items: ~vec::filter_map(module.items) {|item|
items: vec::filter_map(module.items) {|item|
let itemdoc = mk_itemdoc(item.id, item.ident);
alt item.node {
ast::item_mod(m) {