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

rdoc update.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-10-11 07:39:17 +00:00
parent bffae00241
commit 3e54f0ee1f

7
enum.c
View file

@ -2240,13 +2240,14 @@ slicebefore_i(VALUE yielder, VALUE enumerator, int argc, VALUE *argv)
* The duplicated object is passed to 2nd argument of the block for
* +slice_before+ method.
*
* # word wrapping
* def wordwrap(words, width)
* # word wrapping.
* # this assumes all characters have same width.
* def wordwrap(words, maxwidth)
* # if cols is a local variable, 2nd "each" may start with non-zero cols.
* words.slice_before(cols: 0) {|w, h|
* h[:cols] += 1 if h[:cols] != 0
* h[:cols] += w.length
* if width < h[:cols]
* if maxwidth < h[:cols]
* h[:cols] = w.length
* true
* else