summaryrefslogtreecommitdiff
path: root/ext/dbm
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-12 03:54:32 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-12 03:54:32 +0000
commiteadb8b5897c2cc7002e24b795cf007de5d1ec950 (patch)
tree25f67406239681d3f7cf7b532ed4d41a6cb87c59 /ext/dbm
parent8a896179ada36b4fc0f50d75500c801a3097924a (diff)
* ext/dbm/dbm.c: [DOC] Reformat headings of DBM class
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42530 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dbm')
-rw-r--r--ext/dbm/dbm.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/dbm/dbm.c b/ext/dbm/dbm.c
index 157cada14b..eb05afc1a4 100644
--- a/ext/dbm/dbm.c
+++ b/ext/dbm/dbm.c
@@ -957,8 +957,7 @@ fdbm_reject(VALUE obj)
}
/*
- * Documented by mathew meta@pobox.com.
- * = Introduction
+ * == Introduction
*
* The DBM class provides a wrapper to a Unix-style
* {dbm}[http://en.wikipedia.org/wiki/Dbm] or Database Manager library.
@@ -984,7 +983,7 @@ fdbm_reject(VALUE obj)
* All of these dbm implementations have their own Ruby interfaces
* available, which provide richer (but varying) APIs.
*
- * = Cautions
+ * == Cautions
*
* Before you decide to use DBM, there are some issues you should consider:
*
@@ -1009,7 +1008,7 @@ fdbm_reject(VALUE obj)
* important data. It is probably best used as a fast and easy alternative
* to a Hash for processing large amounts of data.
*
- * = Example
+ * == Example
*
* require 'dbm'
* db = DBM.open('rfcs', 666, DBM::CREATRW)