mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* README.EXT: fix typo.
[ruby-core:61634] [Bug #9662] * README.EXT.ja: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0b57f67531
commit
4192341ef1
2 changed files with 2 additions and 2 deletions
|
@ -650,7 +650,7 @@ Here's the example of an initializing function.
|
|||
{
|
||||
/* define DBM class */
|
||||
cDBM = rb_define_class("DBM", rb_cObject);
|
||||
/* DBM includes Enumerate module */
|
||||
/* DBM includes Enumerable module */
|
||||
rb_include_module(cDBM, rb_mEnumerable);
|
||||
|
||||
/* DBM has class method open(): arguments are received as C array */
|
||||
|
|
|
@ -726,7 +726,7 @@ Rubyは拡張ライブラリをロードする時に「Init_ライブラリ名
|
|||
{
|
||||
/* DBMクラスを定義する */
|
||||
cDBM = rb_define_class("DBM", rb_cObject);
|
||||
/* DBMはEnumerateモジュールをインクルードする */
|
||||
/* DBMはEnumerableモジュールをインクルードする */
|
||||
rb_include_module(cDBM, rb_mEnumerable);
|
||||
|
||||
/* DBMクラスのクラスメソッドopen(): 引数はCの配列で受ける */
|
||||
|
|
Loading…
Reference in a new issue