diff options
author | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-21 15:19:46 +0000 |
---|---|---|
committer | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-21 15:19:46 +0000 |
commit | cd381d8acca042d969c72da64ecd2088a6000a0d (patch) | |
tree | 1cdc2542e77d71e3eb65446078c1eff337cc60d0 /doc/syntax | |
parent | 86f1d9b705e460960ea97b6d0084a07cb05e4023 (diff) | |
download | bundler-cd381d8acca042d969c72da64ecd2088a6000a0d.tar.gz |
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/syntax')
-rw-r--r-- | doc/syntax/methods.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/syntax/methods.rdoc b/doc/syntax/methods.rdoc index eff38c3410..7d334d5a16 100644 --- a/doc/syntax/methods.rdoc +++ b/doc/syntax/methods.rdoc @@ -155,7 +155,7 @@ Instead, the argument will be returned: end p(a = 5) # prints 5 - + The actual return value will be returned when invoking the method directly: p send(:a=, 5) # prints 6 |