Minor change in 'method-syntax' chapter

This commit is contained in:
caipre 2015-02-14 12:11:57 -05:00 committed by Nick Platt
parent 3d1c1added
commit 1ac10dde6f

View File

@ -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