Fix pretty printer for move.

This commit is contained in:
Michael Sullivan 2011-05-31 16:16:36 -07:00 committed by Graydon Hoare
parent 78b0d33c35
commit f4df2e4974

View File

@ -693,7 +693,7 @@ fn print_expr(&ps s, &@ast::expr expr) {
case (ast::expr_move(?lhs,?rhs,_)) {
print_expr(s, lhs);
space(s.s);
wrd1(s, "<-");
word_space(s, "<-");
print_expr(s, rhs);
}
case (ast::expr_assign(?lhs,?rhs,_)) {