Skip to content

Commit 8f611b3

Browse files
committed
---
yaml --- r: 42358 b: refs/heads/master c: a281795 h: refs/heads/master v: v3
1 parent 27cc8a2 commit 8f611b3

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
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: 8dd932b3d5c93193013c032e56a1ef5832f753d1
2+
refs/heads/master: a2817953d0a9129ba20b6400cfd53260ab505f40
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/test/pretty/alt-naked-expr-long.rs

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

11-
// pretty-exact
11+
// pp-exact
1212

1313
// actually this doesn't quite look how I want it to, but I can't
1414
// get the prettyprinter to indent the long expr
@@ -18,8 +18,8 @@ fn main() {
1818
let y =
1919
match x {
2020
Some(_) =>
21-
~"some" + ~"very" + ~"very" + ~"very" + ~"very" + ~"very" +
22-
~"very" + ~"very" + ~"very" + ~"long" + ~"string",
21+
~"some" + ~"very" + ~"very" + ~"very" + ~"very" + ~"very" + ~"very"
22+
+ ~"very" + ~"very" + ~"long" + ~"string",
2323
None => ~"none"
2424
};
2525
assert y == ~"some(_)";

trunk/src/test/pretty/alt-naked-expr-medium.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// pretty-exact
11+
// pp-exact
1212

1313
fn main() {
1414
let x = Some(3);

trunk/src/test/pretty/alt-naked-expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// pretty-exact
11+
// pp-exact
1212

1313
fn main() {
1414
let x = Some(3);

trunk/src/test/pretty/do1.rs

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

11-
// pretty-exact
11+
// pp-exact
1212

13-
fn f(f: fn@(int)) { f(10) }
13+
fn f(f: @fn(int)) { f(10) }
1414

15-
fn main() {
16-
do f |i| { assert i == 10 }
17-
}
15+
fn main() { do f |i| { assert i == 10 } }

0 commit comments

Comments
 (0)