diff --git a/src/comp/pretty/pprust.rs b/src/comp/pretty/pprust.rs index 0888880ae78..ca6e83fc848 100644 --- a/src/comp/pretty/pprust.rs +++ b/src/comp/pretty/pprust.rs @@ -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,_)) {