diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-03-06 06:08:40 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-03-06 06:08:40 +0000 |
commit | 31fa4d889938fbb53c40fee4b2ed1dcaee2f617e (patch) | |
tree | 5f597ef35e9a134162525b4fc05e8ed7bc2d9c0a /doc | |
parent | 27a50dd1df966edb3db7a8a024118e4e8f53b8e2 (diff) | |
download | ruby-31fa4d889938fbb53c40fee4b2ed1dcaee2f617e.tar.gz |
* doc/syntax/methods.rdoc: [DOC] Fix example for block arguments [ci skip]
By @idupree [Fixes GH-554] https://github.com/ruby/ruby/pull/554
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45276 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-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 d7610f161d..648843e753 100644 --- a/doc/syntax/methods.rdoc +++ b/doc/syntax/methods.rdoc @@ -383,7 +383,7 @@ arguments must appear before any keyword arguments. The block argument is indicated by <code>&</code> and must come last: def my_method(&my_block) - my_method.call(self) + my_block.call(self) end Most frequently the block argument is used to pass a block to another method: |