Rollup merge of #22333 - caipre:patch-1, r=steveklabnik

The `Circle::grow` method multiplies the radius by a factor of 10, not 2.
This commit is contained in:
Manish Goregaokar 2015-02-17 15:41:33 +05:30
commit 4a7eed1e01

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