From 1ac10dde6f621fd60f6546f3516fb3ebae47d14b Mon Sep 17 00:00:00 2001 From: caipre Date: Sat, 14 Feb 2015 12:11:57 -0500 Subject: [PATCH] Minor change in 'method-syntax' chapter --- src/doc/trpl/method-syntax.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md index e6570c2ee74..64d540582a3 100644 --- a/src/doc/trpl/method-syntax.md +++ b/src/doc/trpl/method-syntax.md @@ -99,8 +99,8 @@ fn grow(&self) -> Circle { # Circle } } ``` -We just say we're returning a `Circle`. With this, we can grow a new circle -that's twice as big as the old one. +We just say we're returning a `Circle`. With this method, we can grow a new +circle with an area that's 100 times larger than the old one. ## Static methods