]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #23788 - steveklabnik:gh23748, r=alexcrichton
authorManish Goregaokar <manishsmail@gmail.com>
Sat, 28 Mar 2015 12:42:04 +0000 (18:12 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Sat, 28 Mar 2015 12:42:04 +0000 (18:12 +0530)
Fixes #23748

src/doc/trpl/method-syntax.md

index 41ef705f0985bffde7126dde985fdd24f9541259..c8309a1e4400ccb7057cfdacc5512f7e3a8633f1 100644 (file)
@@ -51,7 +51,8 @@ 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. Here's an example of all three variants:
+common, as Rustaceans prefer borrowing over taking ownership, and references 
+over mutable references. Here's an example of all three variants:
 
 ```rust
 struct Circle {