diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-20 16:09:46 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-20 16:10:27 -0700 |
| commit | 89bbbd612a1b7380b402acf335f287c8d57fca3d (patch) | |
| tree | f79b98d8681ed1e907f070bb4beb8f72497eaf46 /src/rustdoc/attr_parser.rs | |
| parent | d3f0ede1980a483178df9625c342899f8aa742b5 (diff) | |
| download | rust-89bbbd612a1b7380b402acf335f287c8d57fca3d.tar.gz rust-89bbbd612a1b7380b402acf335f287c8d57fca3d.zip | |
rustdoc: Use doc comments for rustdoc's rustdocs
Diffstat (limited to 'src/rustdoc/attr_parser.rs')
| -rw-r--r-- | src/rustdoc/attr_parser.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rustdoc/attr_parser.rs b/src/rustdoc/attr_parser.rs index 073223617ef..e3522c9b4d7 100644 --- a/src/rustdoc/attr_parser.rs +++ b/src/rustdoc/attr_parser.rs @@ -1,9 +1,9 @@ -#[doc( - brief = "Attribute parsing", - desc = - "The attribute parser provides methods for pulling documentation out of \ - an AST's attributes." -)]; +/*! +Attribute parsing + +The attribute parser provides methods for pulling documentation out of +an AST's attributes. +*/ use syntax::ast; use syntax::attr; |
