diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-01-19 19:14:12 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-01-19 19:14:29 -0800 |
| commit | fdbe206a763516eeb816a5d1c137c87801556479 (patch) | |
| tree | f0eb02a0c53b779a40123dfccf5269e6d90d8b0b /src/rustdoc/extract.rs | |
| parent | 6222e98dda4bd3abfe2fdf447535111bfda4d518 (diff) | |
| download | rust-fdbe206a763516eeb816a5d1c137c87801556479.tar.gz rust-fdbe206a763516eeb816a5d1c137c87801556479.zip | |
rustdoc: Make doc::retdoc non-optional
Diffstat (limited to 'src/rustdoc/extract.rs')
| -rw-r--r-- | src/rustdoc/extract.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rustdoc/extract.rs b/src/rustdoc/extract.rs index ce6d7bdcbb4..9ce5bfed4fe 100644 --- a/src/rustdoc/extract.rs +++ b/src/rustdoc/extract.rs @@ -80,7 +80,10 @@ fn fndoc_from_fn( brief: none, desc: none, args: argdocs_from_args(decl.inputs), - return: none, + return: { + desc: none, + ty: none + }, sig: none } } |
