* enum.c: [DOC] Fixes Enumerable#member? documentation

[fix GH-756][ci skip] Patch by @shamanime

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gogotanaka 2015-03-14 09:15:32 +00:00
Родитель 00f7db376c
Коммит ffe896c3cb
2 изменённых файлов: 7 добавлений и 0 удалений

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

@ -1,3 +1,8 @@
Sat Mar 14 18:07:23 2015 Kazuki Tanaka <gogotanaka@ruby-lang.org>
* enum.c: [DOC] Fixes Enumerable#member? documentation
[fix GH-756][ci skip] Patch by @shamanime
Sat Mar 14 12:23:53 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* dir.c (glob_helper): use d_type to reduce lstat system calls.

2
enum.c
Просмотреть файл

@ -2003,6 +2003,8 @@ member_i(RB_BLOCK_CALL_FUNC_ARGLIST(iter, args))
*
* IO.constants.include? :SEEK_SET #=> true
* IO.constants.include? :SEEK_NO_FURTHER #=> false
* IO.constants.member? :SEEK_SET #=> true
* IO.constants.member? :SEEK_NO_FURTHER #=> false
*
*/