hash.c: [DOC] improve Hash#{select!,keep_if} docs

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-11-04 11:41:52 +00:00
Родитель 139d9d819c
Коммит b3adc0c564
1 изменённых файлов: 4 добавлений и 3 удалений

7
hash.c
Просмотреть файл

@ -2359,8 +2359,8 @@ keep_if_i(VALUE key, VALUE value, VALUE hash)
* hsh.select! {| key, value | block } -> hsh or nil
* hsh.select! -> an_enumerator
*
* Equivalent to <code>Hash#keep_if</code>, but returns
* <code>nil</code> if no changes were made.
* Equivalent to Hash#keep_if, but returns
* +nil+ if no changes were made.
*/
VALUE
@ -2383,10 +2383,11 @@ rb_hash_select_bang(VALUE hash)
* hsh.keep_if -> an_enumerator
*
* Deletes every key-value pair from <i>hsh</i> for which <i>block</i>
* evaluates to false.
* evaluates to +false+.
*
* If no block is given, an enumerator is returned instead.
*
* See also Hash#select!.
*/
VALUE