* enumerator.c (enumerator_with_index, enumerator_with_memo): Fix

grammo in rdoc.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-06-04 06:46:54 +00:00
Родитель 205e542a89
Коммит 9812a3a498
2 изменённых файлов: 9 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Wed Jun 4 15:45:41 2008 Akinori MUSHA <knu@iDaemons.org>
* enumerator.c (enumerator_with_index, enumerator_with_memo): Fix
grammo in rdoc.
Wed Jun 4 13:06:58 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (CFLAGS, CXXFLAGS): include additional flags to

Просмотреть файл

@ -335,7 +335,7 @@ enumerator_with_index_i(VALUE val, VALUE *memo)
* e.with_index {|(*args), idx| ... }
* e.with_index
*
* Iterates the given block for each elements with an index, which
* Iterates the given block for each element with an index, which
* start from 0. If no block is given, returns an enumerator.
*
*/
@ -365,10 +365,10 @@ enumerator_with_memo_i(VALUE val, VALUE memo)
/*
* call-seq:
* e.with_memo(memo) {|(*args), memo| ... }
* e.with_memo(memo)
* e.with_memo(obj) {|(*args), memo_obj| ... }
* e.with_memo(obj)
*
* Iterates the given block for each elements with an arbitrary
* Iterates the given block for each element with an arbitrary
* object given, and returns the memo object.
*
* If no block is given, returns an enumerator.