removed lonely closing parenthesis

There was no opening parenthesis for this closing parenthesis...
This commit is contained in:
Mathieu David 2015-05-28 23:47:27 +02:00
parent 621a10e7f3
commit 15ab481322

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