From 15ab4813223ed5252a9c434f14eb5b66462b018b Mon Sep 17 00:00:00 2001 From: Mathieu David Date: Thu, 28 May 2015 23:47:27 +0200 Subject: [PATCH] removed lonely closing parenthesis There was no opening parenthesis for this closing parenthesis... --- src/doc/trpl/method-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md index e5f490e15e13e..1f694f71a883f 100644 --- a/src/doc/trpl/method-syntax.md +++ b/src/doc/trpl/method-syntax.md @@ -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