Skip to content

Commit

Permalink
Rollup merge of rust-lang#25864 - azerupi:patch-1, r=alexcrichton
Browse files Browse the repository at this point in the history
There was no opening parenthesis for this closing parenthesis...
  • Loading branch information
steveklabnik committed May 29, 2015
2 parents e7fc4ad + 15ab481 commit 070ac2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/method-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 070ac2c

Please sign in to comment.