summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.EXT b/README.EXT
index 9f5c1a83fc..49de246ec0 100644
--- a/README.EXT
+++ b/README.EXT
@@ -689,7 +689,7 @@ Here's the example of an initializing function.
Init_dbm(void)
{
/* define DBM class */
- cDBM = rb_define_class("DBM", rb_cObject);
+ VALUE cDBM = rb_define_class("DBM", rb_cObject);
/* DBM includes Enumerable module */
rb_include_module(cDBM, rb_mEnumerable);