aboutsummaryrefslogtreecommitdiffstats
path: root/doc
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
commite01f10674ab8e614b6a711fc92370347b7131a9a (patch)
tree1cdc2542e77d71e3eb65446078c1eff337cc60d0 /doc
parente0b394ae7460c79717ca6c53304560dcf9fedce8 (diff)
downloadruby-e01f10674ab8e614b6a711fc92370347b7131a9a.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')
-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