summaryrefslogtreecommitdiff
path: root/sample/dbm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/dbm.rb')
-rw-r--r--sample/dbm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/dbm.rb b/sample/dbm.rb
index 1f2886e026..128391faec 100644
--- a/sample/dbm.rb
+++ b/sample/dbm.rb
@@ -1,6 +1,6 @@
# ruby
#
-d = Dbm.open("test")
+d = DBM.open("test")
for k in d.keys; print(k, "\n"); end
for v in d.values; print(v, "\n"); end