about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-01-07 21:17:52 -0800
committerBrian Anderson <banderson@mozilla.com>2014-01-07 21:23:26 -0800
commit2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8 (patch)
treed8b5b9507da03296c8b7ba3dca8c668defc3ba6c /src/libsyntax
parentda4383203472a2e5fd4d3fcc67672d8d8ccafdea (diff)
downloadrust-2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8.tar.gz
rust-2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8.zip
doc: Add rustc and syntax to the index
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/lib.rs16
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)];