mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
removed lonely closing parenthesis
There was no opening parenthesis for this closing parenthesis...
This commit is contained in:
parent
621a10e7f3
commit
15ab481322
@ -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 isn’t the
|
||||
|
Loading…
Reference in New Issue
Block a user