rustdoc: Add argument types to the doc

This commit is contained in:
Brian Anderson 2012-01-18 17:05:03 -08:00
parent f3fa7c1555
commit 6da55efa4e
3 changed files with 65 additions and 21 deletions

View file

@ -22,7 +22,8 @@ type fndoc = ~{
};
type argdoc = ~{
name: str
name: str,
ty: option<str>
};
type retdoc = {