diff options
| author | Paul Stansifer <paul.stansifer@gmail.com> | 2012-08-22 18:10:48 -0700 |
|---|---|---|
| committer | Paul Stansifer <paul.stansifer@gmail.com> | 2012-08-23 11:14:15 -0700 |
| commit | 77e83d83a9a93188c3bb80ea2bb09f2e5fd2579f (patch) | |
| tree | c3c72442481cd54d7db5fc47e3a419429ac96f4c /src/libsyntax | |
| parent | c74a442e86abf885b53dba8a1a33359c70f49e15 (diff) | |
| download | rust-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.rs | 4 |
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: |
