Add a space after @mutable.

This commit is contained in:
Graydon Hoare 2011-06-01 13:12:12 -07:00
parent 19f85cc9c4
commit 023bbc0449

View file

@ -182,7 +182,7 @@ tag unop {
fn unop_to_str(unop op) -> str {
alt (op) {
case (box(?mt)) {
if (mt == mut) { ret "@mutable"; }
if (mt == mut) { ret "@mutable "; }
ret "@";
}
case (deref) {ret "*";}