rustdoc: Introduce type doc::argdoc

This commit is contained in:
Brian Anderson 2012-01-18 14:47:18 -08:00
parent 38852bf0a4
commit 29df58d73b
4 changed files with 17 additions and 12 deletions

View file

@ -18,7 +18,11 @@ type fndoc = ~{
brief: option<str>,
desc: option<str>,
return: option<retdoc>,
args: [(str, str)]
args: [argdoc]
};
type argdoc = ~{
name: str
};
type retdoc = {