1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* numeric.c: [DOC] Fix typo in example for #step [ci skip]

Patch by @ksss [Fixes GH-522] https://github.com/ruby/ruby/pull/522


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2014-01-31 21:05:52 +00:00
parent cb07275001
commit 65fd879a0a
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sat Feb 1 06:04:56 2014 Zachary Scott <e@zzak.io>
* numeric.c: [DOC] Fix typo in example for #step [ci skip]
Patch by @ksss [Fixes GH-522] https://github.com/ruby/ruby/pull/522
Fri Jan 31 17:01:47 2014 Eric Wong <e@80x24.org>
* ext/socket/init.c (rsock_socket0): split out SOCK_CLOEXEC version

View file

@ -1879,8 +1879,8 @@ num_step_size(VALUE from, VALUE args, VALUE eobj)
}
/*
* call-seq:
* num.step(by: step, to: limit]) {|i| block } -> self
* num.step(by: step, to: limit]) -> an_enumerator
* num.step(by: step, to: limit) {|i| block } -> self
* num.step(by: step, to: limit) -> an_enumerator
* num.step(limit=nil, step=1) {|i| block } -> self
* num.step(limit=nil, step=1) -> an_enumerator
*