about summary refs log tree commit diff
path: root/src/comp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-06-18 19:50:34 -0700
committerBrian Anderson <banderson@mozilla.com>2011-06-18 20:23:05 -0700
commit364cd5763c118eb7bc73a36c7eefcd842f506f8f (patch)
tree5775541badbdf67df5a33e98ead4f30374c5486a /src/comp
parent3852f1eee3cb2b608ed2fcb98cb078ffc102905e (diff)
downloadrust-364cd5763c118eb7bc73a36c7eefcd842f506f8f.tar.gz
rust-364cd5763c118eb7bc73a36c7eefcd842f506f8f.zip
rustc: receive is spelled |> now
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/front/token.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/token.rs b/src/comp/front/token.rs
index 57a75b1e40d..50686d5093f 100644
--- a/src/comp/front/token.rs
+++ b/src/comp/front/token.rs
@@ -123,7 +123,7 @@ fn to_str(lexer::reader r, token t) -> str {
         case (QUES) { ret "?"; }
         case (RARROW) { ret "->"; }
         case (SEND) { ret "<|"; }
-        case (RECV) { ret "<|"; }
+        case (RECV) { ret "|>"; }
         case (LARROW) { ret "<-"; }
         case (DARROW) { ret "<->"; }
         case (LPAREN) { ret "("; }