rustdoc: Don't bother reporting the type of arguments

This is already displayed in the function signature. Simpler this way.
This commit is contained in:
Brian Anderson
2012-03-08 13:25:08 -08:00
parent fcde161f4f
commit 5c28b2c1d1
4 changed files with 10 additions and 125 deletions

View File

@@ -161,8 +161,7 @@ fn argdocs_from_args(args: [ast::arg]) -> [doc::argdoc] {
fn argdoc_from_arg(arg: ast::arg) -> doc::argdoc {
{
name: arg.ident,
desc: none,
ty: none
desc: none
}
}