Skip to content

Commit 746a8b8

Browse files
committed
---
yaml --- r: 11723 b: refs/heads/master c: 256146b h: refs/heads/master i: 11721: 90863c3 11719: 072567f v: v3
1 parent a0665aa commit 746a8b8

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 71799cff2be35db9d3d2436f132156aff08fc672
2+
refs/heads/master: 256146bba4d02bd96e67859e1d7a42b44e351626
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/rustdoc/rustdoc.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mod prune_undoc_items_pass;
2929
mod prune_unexported_pass;
3030
mod prune_hidden_pass;
3131
mod desc_to_brief_pass;
32-
mod desc_pass;
32+
mod text_pass;
3333
mod unindent_pass;
3434
mod trim_pass;
3535
mod astsrv;
File renamed without changes.

trunk/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("trim", {|s| str::trim(s)})
13+
text_pass::mk_pass("trim", {|s| str::trim(s)})
1414
}
1515

1616
#[test]

trunk/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", unindent)
17+
text_pass::mk_pass("unindent", unindent)
1818
}
1919

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

0 commit comments

Comments
 (0)