about summary refs log tree commit diff
path: root/src/comp
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2011-06-01 13:12:12 -0700
committerGraydon Hoare <graydon@mozilla.com>2011-06-01 13:12:12 -0700
commit023bbc0449546bfd93d96f1b6083901e2245c9f7 (patch)
treebc62a4d32b1170701f0244f7f48c87708356e96a /src/comp
parent19f85cc9c4165715649eb30f818f854351fe333f (diff)
downloadrust-023bbc0449546bfd93d96f1b6083901e2245c9f7.tar.gz
rust-023bbc0449546bfd93d96f1b6083901e2245c9f7.zip
Add a space after @mutable.
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/front/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs
index 4a8b96d5ed4..0d53a8bde5d 100644
--- a/src/comp/front/ast.rs
+++ b/src/comp/front/ast.rs
@@ -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 "*";}