1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix function name for DBM on extension document.

Patch by Yuji Yaginuma, @y-yagi <yuuji.yaginuma@gmail.com>
  [ci skip][fix GH-1519]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2017-01-26 07:09:58 +00:00
parent 61701ae167
commit 17ee91960f
2 changed files with 2 additions and 2 deletions

View file

@ -865,7 +865,7 @@ Rubyは拡張ライブラリをロードする時に「Init_ライブラリ名
DBMライブラリはdbmのデータと対応するオブジェクトになるはずで DBMライブラリはdbmのデータと対応するオブジェクトになるはずで
すからCの世界のdbmをRubyの世界に取り込む必要があります すからCの世界のdbmをRubyの世界に取り込む必要があります
dbm.cではData_Make_Structを以下のように使っています dbm.cではTypedData_Make_Structを以下のように使っています
struct dbmdata { struct dbmdata {
int di_size; int di_size;

View file

@ -802,7 +802,7 @@ Here's the example of an initializing function.
} }
The dbm extension wraps the dbm struct in the C environment using The dbm extension wraps the dbm struct in the C environment using
Data_Make_Struct. TypedData_Make_Struct.
struct dbmdata { struct dbmdata {
int di_size; int di_size;