diff options
| author | Tamir Duberstein <tamird@gmail.com> | 2015-03-14 16:09:26 -0700 |
|---|---|---|
| committer | Tamir Duberstein <tamird@gmail.com> | 2015-03-15 11:25:43 -0700 |
| commit | f5765793b650e45e8c9bc89dfc7a4dc628123cb7 (patch) | |
| tree | 36adbe36349138ea5a4578d3341a74825348570e /src/doc/trpl/method-syntax.md | |
| parent | d51047ded072b412ec18a6f78c1fb80835a477f5 (diff) | |
| download | rust-f5765793b650e45e8c9bc89dfc7a4dc628123cb7.tar.gz rust-f5765793b650e45e8c9bc89dfc7a4dc628123cb7.zip | |
Strip trailing whitespace
Diffstat (limited to 'src/doc/trpl/method-syntax.md')
| -rw-r--r-- | src/doc/trpl/method-syntax.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md index 59be8c6704f..0ca42c3b12d 100644 --- a/src/doc/trpl/method-syntax.md +++ b/src/doc/trpl/method-syntax.md @@ -61,15 +61,15 @@ struct Circle { impl Circle { fn reference(&self) { - println!("taking self by reference!"); + println!("taking self by reference!"); } fn mutable_reference(&mut self) { - println!("taking self by mutable reference!"); + println!("taking self by mutable reference!"); } fn takes_ownership(self) { - println!("taking ownership of self!"); + println!("taking ownership of self!"); } } ``` |
