diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2011-06-01 13:12:12 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-06-01 13:12:12 -0700 |
| commit | 023bbc0449546bfd93d96f1b6083901e2245c9f7 (patch) | |
| tree | bc62a4d32b1170701f0244f7f48c87708356e96a /src/comp | |
| parent | 19f85cc9c4165715649eb30f818f854351fe333f (diff) | |
| download | rust-023bbc0449546bfd93d96f1b6083901e2245c9f7.tar.gz rust-023bbc0449546bfd93d96f1b6083901e2245c9f7.zip | |
Add a space after @mutable.
Diffstat (limited to 'src/comp')
| -rw-r--r-- | src/comp/front/ast.rs | 2 |
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 "*";} |
