diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-01-07 21:17:52 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-01-07 21:23:26 -0800 |
| commit | 2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8 (patch) | |
| tree | d8b5b9507da03296c8b7ba3dca8c668defc3ba6c /src/libsyntax/lib.rs | |
| parent | da4383203472a2e5fd4d3fcc67672d8d8ccafdea (diff) | |
| download | rust-2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8.tar.gz rust-2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8.zip | |
doc: Add rustc and syntax to the index
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 1610b77a661..5128cdd54cc 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -8,15 +8,23 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -/*! This module contains the Rust parser. It maps source text - * to token trees and to ASTs. It contains code for expanding - * macros. - */ +/*! + +The Rust parser and macro expander. + +# Note + +This API is completely unstable and subject to change. + +*/ #[crate_id = "syntax#0.9"]; #[license = "MIT/ASL2"]; #[crate_type = "dylib"]; #[crate_type = "rlib"]; +#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png", + html_favicon_url = "http://www.rust-lang.org/favicon.ico", + html_root_url = "http://static.rust-lang.org/doc/master")]; #[feature(macro_rules, globs, managed_boxes)]; |
