Skip to content

Commit b532a8e

Browse files
committed
Line length
1 parent 7236472 commit b532a8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libsyntax/print/pprust.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,8 @@ fn print_item(s: ps, &&item: @ast::item) {
502502
end(s); // end the outer ibox
503503
}
504504
ast::item_enum(enum_definition, params) => {
505-
print_enum_def(s, enum_definition, params, item.ident, item.span, item.vis);
505+
print_enum_def(s, enum_definition, params, item.ident,
506+
item.span, item.vis);
506507
}
507508
ast::item_class(struct_def, tps) => {
508509
head(s, visibility_qualified(item.vis, ~"struct"));

0 commit comments

Comments
 (0)