File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 38ac87f0ff3e8a55b697cc0f23ba9304afe72aa3
2
+ refs/heads/master: d6ded6788dbf24a6545f579a23a92553efae1c2e
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ Apply a function to each element of a vector and return the results
430
430
If function `f` returns `none` then that element is excluded from
431
431
the resulting vector.
432
432
" ]
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 > )
434
434
-> [ U ] {
435
435
let mut result = [ ] ;
436
436
for elem: T in v {
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ fn run_compiler(args: [str], demitter: diagnostic::emitter) {
93
93
ret;
94
94
}
95
95
let ifile = alt vec:: len( match. free) {
96
- 0 u { early_error( demitter, "no input filename given" ) }
96
+ 0 u { early_error( demitter, "o input filename given" ) }
97
97
1 u { match. free[ 0 ] }
98
98
_ { early_error( demitter, "multiple input filenames provided" ) }
99
99
} ;
You can’t perform that action at this time.
0 commit comments