about summary refs log tree commit diff
path: root/src/rustdoc/astsrv.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-17 17:44:32 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-17 17:45:37 -0800
commite23e45bc6d7696fa9d69ae9f8f59628eec2cbb03 (patch)
treecf367e58389d5a6cb3618a398857cfda3707e29e /src/rustdoc/astsrv.rs
parent5fbadd24ec350455dd24c31dd8dca64182346d3f (diff)
downloadrust-e23e45bc6d7696fa9d69ae9f8f59628eec2cbb03.tar.gz
rust-e23e45bc6d7696fa9d69ae9f8f59628eec2cbb03.zip
rustdoc: Add rustdocs
Diffstat (limited to 'src/rustdoc/astsrv.rs')
-rw-r--r--src/rustdoc/astsrv.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/rustdoc/astsrv.rs b/src/rustdoc/astsrv.rs
index d589cba107b..4bdf4498d63 100644
--- a/src/rustdoc/astsrv.rs
+++ b/src/rustdoc/astsrv.rs
@@ -1,4 +1,11 @@
-#[doc = "Provides all access to AST-related, non-sendable info"];
+#[doc(
+    brief = "Provides all access to AST-related, non-sendable info",
+    desc =
+    "Rustdoc is intended to be parallel, and the rustc AST is filled \
+     with shared boxes. The AST service attempts to provide a single \
+     place to query AST-related information, shielding the rest of \
+     Rustdoc from its non-sendableness."
+)];
 
 import rustc::syntax::ast;
 import rustc::middle::ast_map;