Skip to content

Commit

Permalink
Auto merge of #23861 - Manishearth:rollup, r=Manishearth
Browse files Browse the repository at this point in the history
- Successful merges: #23746, #23836, #23852
- Failed merges: #23855
  • Loading branch information
bors committed Mar 30, 2015
2 parents 9de34a8 + 3b45470 commit 6cf3b0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/doc/trpl/method-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ parameter, of which there are three variants: `self`, `&self`, and `&mut self`.
You can think of this first parameter as being the `x` in `x.foo()`. The three
variants correspond to the three kinds of thing `x` could be: `self` if it's
just a value on the stack, `&self` if it's a reference, and `&mut self` if it's
a mutable reference. We should default to using `&self`, as it's the most
common, as Rustaceans prefer borrowing over taking ownership, and references
over mutable references. Here's an example of all three variants:
a mutable reference. We should default to using `&self`, as you should prefer
borrowing over taking ownership, as well as taking immutable references
over mutable ones. Here's an example of all three variants:

```rust
struct Circle {
Expand Down

0 comments on commit 6cf3b0b

Please sign in to comment.