From 3e54f0ee1ff1081a0576a141d27616d29b527393 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 11 Oct 2009 07:39:17 +0000 Subject: [PATCH] rdoc update. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enum.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/enum.c b/enum.c index fa2b5926e7e3e9..523e9bfe050200 100644 --- a/enum.c +++ b/enum.c @@ -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