about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorPaul Stansifer <paul.stansifer@gmail.com>2012-08-22 18:10:48 -0700
committerPaul Stansifer <paul.stansifer@gmail.com>2012-08-23 11:14:15 -0700
commit77e83d83a9a93188c3bb80ea2bb09f2e5fd2579f (patch)
treec3c72442481cd54d7db5fc47e3a419429ac96f4c /src/libsyntax
parentc74a442e86abf885b53dba8a1a33359c70f49e15 (diff)
downloadrust-77e83d83a9a93188c3bb80ea2bb09f2e5fd2579f.tar.gz
rust-77e83d83a9a93188c3bb80ea2bb09f2e5fd2579f.zip
Change calls of `proto!` to use parens.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/pipes.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ext/pipes.rs b/src/libsyntax/ext/pipes.rs
index beda46a2c3b..479e3afe51b 100644
--- a/src/libsyntax/ext/pipes.rs
+++ b/src/libsyntax/ext/pipes.rs
@@ -3,14 +3,14 @@
 This is frequently called the pipe compiler. It handles code such as...
 
 ~~~
-proto! pingpong {
+proto! pingpong (
     ping: send {
         ping -> pong
     }
     pong: recv {
         pong -> ping
     }
-}
+)
 ~~~
 
 There are several components: