Rollup merge of #25864 - azerupi:patch-1, r=alexcrichton

There was no opening parenthesis for this closing parenthesis...
This commit is contained in:
Steve Klabnik 2015-05-29 15:24:46 -04:00
commit 5d2af1c724
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ Functions are great, but if you want to call a bunch of them on some data, it
can be awkward. Consider this code:
```rust,ignore
baz(bar(foo)));
baz(bar(foo));
```
We would read this left-to right, and so we see baz bar foo. But this isnt the