summaryrefslogtreecommitdiff
path: root/doc/syntax/methods.rdoc
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 15:19:46 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 15:19:46 +0000
commitcd381d8acca042d969c72da64ecd2088a6000a0d (patch)
tree1cdc2542e77d71e3eb65446078c1eff337cc60d0 /doc/syntax/methods.rdoc
parent86f1d9b705e460960ea97b6d0084a07cb05e4023 (diff)
* 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/methods.rdoc')
-rw-r--r--doc/syntax/methods.rdoc2
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