From d6b1887dd33000a9c1d6a8c88449a0ef06eaa5d4 Mon Sep 17 00:00:00 2001 From: marcandre Date: Thu, 13 May 2010 05:52:16 +0000 Subject: * array.c: Harmonize documentation, in particular regarding: - methods returning enumerators - array methods and argument naming (array -> ary, an_array -> new_ary) - minor improvements, typo fixed and styling issues Other documentation errors fixed: - return value was self instead of a new array (or vice-versa) for Array#{pop,shift,permutation,repeated_permutation,keep_if} - Array#rindex was missing the form with a block. * dir.c: ditto. * enum.c: ditto. Modified Enumerable#reverse_each' documentation to clarify that #each will be finish before any element is yielded. * error.c: ditto. * gc.c: ditto. * hash.c: ditto. * io.c: ditto. IO#{codepoints,each_codepoint} fixed as per [ruby-core:23948] * numeric.c: ditto. * range.c: ditto. * string.c: ditto. * struct.c: ditto. * vm_eval.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27778 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index fefe6d6dfd..e7b64de7a3 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -792,10 +792,13 @@ loop_i(void) /* * call-seq: - * loop {|| block } + * loop { block } + * loop -> an_enumerator * * Repeatedly executes the block. * + * If no block is given, an enumerator is returned instead. + * * loop do * print "Input: " * line = gets -- cgit v1.2.3