Skip to content

Commit 6f1bd0c

Browse files
committed
---
yaml --- r: 97527 b: refs/heads/snap-stage3 c: 2d8dd6a h: refs/heads/master i: 97525: a8a1b8e 97523: d675068 97519: c968e48 v: v3
1 parent 0064151 commit 6f1bd0c

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 0da105a8b7b6b1e0568e8ff20f6ff4b13cc7ecc2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: da4383203472a2e5fd4d3fcc67672d8d8ccafdea
4+
refs/heads/snap-stage3: 2d8dd6afd4ef36742b4e8a4e848e13ddbe275fe8
55
refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/doc/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
[extra](extra/index.html)
2828
[green](green/index.html)
2929
[native](native/index.html)
30+
[syntax](syntax/index.html)
31+
[rustc](rustc/index.html)
3032

3133
# Tooling
3234

branches/snap-stage3/src/librustc/lib.rs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,24 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
/*!
12+
13+
The Rust compiler.
14+
15+
# Note
16+
17+
This API is completely unstable and subject to change.
18+
19+
*/
20+
1121
#[crate_id = "rustc#0.9"];
1222
#[comment = "The Rust compiler"];
1323
#[license = "MIT/ASL2"];
1424
#[crate_type = "dylib"];
1525
#[crate_type = "rlib"];
26+
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
27+
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
28+
html_root_url = "http://static.rust-lang.org/doc/master")];
1629

1730
#[feature(macro_rules, globs, struct_variant, managed_boxes)];
1831

branches/snap-stage3/src/libsyntax/lib.rs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,23 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
/*! This module contains the Rust parser. It maps source text
12-
* to token trees and to ASTs. It contains code for expanding
13-
* macros.
14-
*/
11+
/*!
12+
13+
The Rust parser and macro expander.
14+
15+
# Note
16+
17+
This API is completely unstable and subject to change.
18+
19+
*/
1520

1621
#[crate_id = "syntax#0.9"];
1722
#[license = "MIT/ASL2"];
1823
#[crate_type = "dylib"];
1924
#[crate_type = "rlib"];
25+
#[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
26+
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
27+
html_root_url = "http://static.rust-lang.org/doc/master")];
2028

2129
#[feature(macro_rules, globs, managed_boxes)];
2230

0 commit comments

Comments
 (0)