diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-01-17 17:44:32 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-01-17 17:45:37 -0800 |
| commit | e23e45bc6d7696fa9d69ae9f8f59628eec2cbb03 (patch) | |
| tree | cf367e58389d5a6cb3618a398857cfda3707e29e /src/rustdoc/astsrv.rs | |
| parent | 5fbadd24ec350455dd24c31dd8dca64182346d3f (diff) | |
| download | rust-e23e45bc6d7696fa9d69ae9f8f59628eec2cbb03.tar.gz rust-e23e45bc6d7696fa9d69ae9f8f59628eec2cbb03.zip | |
rustdoc: Add rustdocs
Diffstat (limited to 'src/rustdoc/astsrv.rs')
| -rw-r--r-- | src/rustdoc/astsrv.rs | 9 |
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; |
