Skip to content

Commit f4df2e4

Browse files
msullivangraydon
authored andcommitted
Fix pretty printer for move.
1 parent 78b0d33 commit f4df2e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/pretty/pprust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ fn print_expr(&ps s, &@ast::expr expr) {
693693
case (ast::expr_move(?lhs,?rhs,_)) {
694694
print_expr(s, lhs);
695695
space(s.s);
696-
wrd1(s, "<-");
696+
word_space(s, "<-");
697697
print_expr(s, rhs);
698698
}
699699
case (ast::expr_assign(?lhs,?rhs,_)) {

0 commit comments

Comments
 (0)