re-fix typo

This commit is contained in:
Tim Chevalier 2012-12-11 12:43:33 -08:00
parent d42bdf1997
commit b0a01f2563

View File

@ -182,7 +182,7 @@ fn find_attrs_by_name(attrs: ~[ast::attribute], name: ~str) ->
return vec::filter_map(attrs, filter);
}
/// Searcha list of meta items and return only those with a specific name
/// Search a list of meta items and return only those with a specific name
fn find_meta_items_by_name(metas: ~[@ast::meta_item], name: ~str) ->
~[@ast::meta_item] {
let filter = fn@(m: &@ast::meta_item) -> Option<@ast::meta_item> {