Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/doc/trpl/method-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down