Skip to content

Commit 5733a13

Browse files
committed
---
yaml --- r: 11958 b: refs/heads/master c: d6ded67 h: refs/heads/master v: v3
1 parent 5d5c793 commit 5733a13

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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: 38ac87f0ff3e8a55b697cc0f23ba9304afe72aa3
2+
refs/heads/master: d6ded6788dbf24a6545f579a23a92553efae1c2e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/libcore/vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ Apply a function to each element of a vector and return the results
430430
If function `f` returns `none` then that element is excluded from
431431
the resulting vector.
432432
"]
433-
fn filter_map<T: copy, U: copy>(v: [T], f: fn(T) -> option<U>)
433+
fn filter_map<T, U: copy>(v: [T], f: fn(T) -> option<U>)
434434
-> [U] {
435435
let mut result = [];
436436
for elem: T in v {

trunk/src/rustc/driver/rustc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fn run_compiler(args: [str], demitter: diagnostic::emitter) {
9393
ret;
9494
}
9595
let ifile = alt vec::len(match.free) {
96-
0u { early_error(demitter, "no input filename given") }
96+
0u { early_error(demitter, "o input filename given") }
9797
1u { match.free[0] }
9898
_ { early_error(demitter, "multiple input filenames provided") }
9999
};

0 commit comments

Comments
 (0)