about summary refs log tree commit diff
path: root/src/rustdoc/attr_pass.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-20 16:09:46 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-20 16:10:27 -0700
commit89bbbd612a1b7380b402acf335f287c8d57fca3d (patch)
treef79b98d8681ed1e907f070bb4beb8f72497eaf46 /src/rustdoc/attr_pass.rs
parentd3f0ede1980a483178df9625c342899f8aa742b5 (diff)
downloadrust-89bbbd612a1b7380b402acf335f287c8d57fca3d.tar.gz
rust-89bbbd612a1b7380b402acf335f287c8d57fca3d.zip
rustdoc: Use doc comments for rustdoc's rustdocs
Diffstat (limited to 'src/rustdoc/attr_pass.rs')
-rw-r--r--src/rustdoc/attr_pass.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/rustdoc/attr_pass.rs b/src/rustdoc/attr_pass.rs
index 354332db0ff..ea049e0d9fc 100644
--- a/src/rustdoc/attr_pass.rs
+++ b/src/rustdoc/attr_pass.rs
@@ -1,10 +1,10 @@
-#[doc(
-    brief = "The attribute parsing pass",
-    desc =
-    "Traverses the document tree, pulling relevant documention out of the \
-     corresponding AST nodes. The information gathered here is the basis \
-     of the natural-language documentation for a crate."
-)];
+/*!
+The attribute parsing pass
+
+Traverses the document tree, pulling relevant documention out of the
+corresponding AST nodes. The information gathered here is the basis
+of the natural-language documentation for a crate.
+*/
 
 use doc::ItemUtils;
 use extract::to_str;