The wonky for...in... whitespace was bothering me. Sorry!

This commit is contained in:
Lindsey Kuper
2011-08-15 21:54:52 -07:00
parent cb239cc028
commit f91351aaf6
102 changed files with 564 additions and 564 deletions

View File

@@ -51,7 +51,7 @@ fn field_expr(f: &ast::field) -> @ast::expr { ret f.node.expr; }
fn field_exprs(fields: &[ast::field]) -> [@ast::expr] {
let es = ~[];
for f: ast::field in fields { es += ~[f.node.expr]; }
for f: ast::field in fields { es += ~[f.node.expr]; }
ret es;
}