about summary refs log tree commit diff
diff options
context:
space:
mode:
authorcaipre <platt.nicholas@gmail.com>2015-02-14 12:11:57 -0500
committerNick Platt <platt.nicholas@gmail.com>2015-02-14 12:27:17 -0500
commit1ac10dde6f621fd60f6546f3516fb3ebae47d14b (patch)
tree53c1c54bf20b8810144f584fdbe8f7ce436f4574
parent3d1c1added595c1c3410a1b72d8f0134942e4e24 (diff)
downloadrust-1ac10dde6f621fd60f6546f3516fb3ebae47d14b.tar.gz
rust-1ac10dde6f621fd60f6546f3516fb3ebae47d14b.zip
Minor change in 'method-syntax' chapter
-rw-r--r--src/doc/trpl/method-syntax.md4
1 files 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