Skip to content

Commit 47a43fa

Browse files
committed
---
yaml --- r: 14507 b: refs/heads/try c: 01a1c98 h: refs/heads/master i: 14505: 0cbc6c5 14503: b08163e v: v3
1 parent 05957d9 commit 47a43fa

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 98c31aaaffcd98ab708acd095cc0202fa49ce2dd
5+
refs/heads/try: 01a1c98d09b5c57c4a7eb025e4f84c403b26a024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/rustdoc/desc_pass.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
export mk_pass;
44

5-
fn mk_pass(op: fn~(str) -> str) -> pass {
5+
fn mk_pass(name: str, op: fn~(str) -> str) -> pass {
66
{
7-
name: "desc",
7+
name: name,
88
f: fn~(srv: astsrv::srv, doc: doc::cratedoc) -> doc::cratedoc {
99
run(srv, doc, op)
1010
}

branches/try/src/rustdoc/prune_unexported_pass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export mk_pass;
88

99
fn mk_pass() -> pass {
1010
{
11-
name: "prune_unexperted",
11+
name: "prune_unexported",
1212
f: run
1313
}
1414
}

branches/try/src/rustdoc/rustdoc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ fn run(source_file: str) {
117117

118118
let default_name = source_file;
119119
astsrv::from_file(source_file) {|srv|
120-
time("wait") {||
120+
time("wait_ast") {||
121121
astsrv::exec(srv) {|_ctxt| () }
122122
};
123123
let doc = time("extract") {||

branches/try/src/rustdoc/trim_pass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ is interpreted as the brief description.
1010
export mk_pass;
1111

1212
fn mk_pass() -> pass {
13-
desc_pass::mk_pass({|s| str::trim(s)})
13+
desc_pass::mk_pass("trim", {|s| str::trim(s)})
1414
}
1515

1616
#[test]

branches/try/src/rustdoc/unindent_pass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ middle of a line, and each of the following lines is indented.
1414
export mk_pass;
1515

1616
fn mk_pass() -> pass {
17-
desc_pass::mk_pass(unindent)
17+
desc_pass::mk_pass("unindent", unindent)
1818
}
1919

2020
fn unindent(s: str) -> str {

0 commit comments

Comments
 (0)