* ext/dbm/dbm.c: [DOC] Fix wrong constant name in DBM by @edward

[Fixes GH-409] https://github.com/ruby/ruby/pull/409


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-10-04 10:56:27 +00:00
Родитель 8d9e3cd9c6
Коммит 8015397318
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1,3 +1,8 @@
Fri Oct 4 19:54:09 2013 Zachary Scott <e@zzak.io>
* ext/dbm/dbm.c: [DOC] Fix wrong constant name in DBM by @edward
[Fixes GH-409] https://github.com/ruby/ruby/pull/409
Fri Oct 4 19:49:42 2013 Aman Gupta <ruby@tmm1.net> Fri Oct 4 19:49:42 2013 Aman Gupta <ruby@tmm1.net>
* gc.c: rename heap.free_num as heap.swept_num to clarify meaning and * gc.c: rename heap.free_num as heap.swept_num to clarify meaning and

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

@ -1011,7 +1011,7 @@ fdbm_reject(VALUE obj)
* == Example * == Example
* *
* require 'dbm' * require 'dbm'
* db = DBM.open('rfcs', 666, DBM::CREATRW) * db = DBM.open('rfcs', 666, DBM::WRCREAT)
* db['822'] = 'Standard for the Format of ARPA Internet Text Messages' * db['822'] = 'Standard for the Format of ARPA Internet Text Messages'
* db['1123'] = 'Requirements for Internet Hosts - Application and Support' * db['1123'] = 'Requirements for Internet Hosts - Application and Support'
* db['3068'] = 'An Anycast Prefix for 6to4 Relay Routers' * db['3068'] = 'An Anycast Prefix for 6to4 Relay Routers'