Skip to content

Commit 1abb7a8

Browse files
committed
Fix long lines in fold.rs, typeck.rs
1 parent 4539f8a commit 1abb7a8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/comp/middle/fold.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1499,7 +1499,8 @@ fn identity_fold_item_mod[ENV](&ENV e, &span sp, &ident i,
14991499
}
15001500

15011501
fn identity_fold_item_native_mod[ENV](&ENV e, &span sp, &ident i,
1502-
&ast.native_mod m, &def_id id) -> @item {
1502+
&ast.native_mod m,
1503+
&def_id id) -> @item {
15031504
ret @respan(sp, ast.item_native_mod(i, m, id));
15041505
}
15051506

src/comp/middle/typeck.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,8 @@ mod Collect {
631631
ret result;
632632
}
633633

634-
fn collect(&@ty_item_table id_to_ty_item, &@ast.item i) -> @ty_item_table {
634+
fn collect(&@ty_item_table id_to_ty_item, &@ast.item i)
635+
-> @ty_item_table {
635636
alt (i.node) {
636637
case (ast.item_ty(_, _, _, ?def_id, _)) {
637638
id_to_ty_item.insert(def_id, any_item_rust(i));

0 commit comments

Comments
 (0)