about summary refs log tree commit diff
path: root/src/doc/trpl/method-syntax.md
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-03-26 22:33:51 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-03-26 22:38:19 +0200
commit07afd04d344378c359e0dd2d71deee67445c70ca (patch)
treea8dc71054ab6476b43dcda8f3a546c30370c7109 /src/doc/trpl/method-syntax.md
parent557d4346a26266d2eb13f6b0adf106b8873b0da1 (diff)
downloadrust-07afd04d344378c359e0dd2d71deee67445c70ca.tar.gz
rust-07afd04d344378c359e0dd2d71deee67445c70ca.zip
book: let grow() accept the growth parameter
Diffstat (limited to 'src/doc/trpl/method-syntax.md')
-rw-r--r--src/doc/trpl/method-syntax.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md
index 8cb16f7ab33..391b21c0f1c 100644
--- a/src/doc/trpl/method-syntax.md
+++ b/src/doc/trpl/method-syntax.md
@@ -100,8 +100,8 @@ impl Circle {
         std::f64::consts::PI * (self.radius * self.radius)
     }
 
-    fn grow(&self) -> Circle {
-        Circle { x: self.x, y: self.y, radius: (self.radius * 10.0) }
+    fn grow(&self, increment: f64) -> Circle {
+        Circle { x: self.x, y: self.y, radius: self.radius + increment }
     }
 }
 
@@ -109,7 +109,7 @@ fn main() {
     let c = Circle { x: 0.0, y: 0.0, radius: 2.0 };
     println!("{}", c.area());
 
-    let d = c.grow().area();
+    let d = c.grow(2.0).area();
     println!("{}", d);
 }
 ```
@@ -124,7 +124,7 @@ fn grow(&self) -> Circle {
 ```
 
 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.
+circle to any arbitrary size.
 
 ## Static methods