aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ext/dbm/dbm.c7
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e6234ad996..3b335e1bfd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Aug 12 12:53:39 2013 Zachary Scott <e@zzak.io>
+
+ * ext/dbm/dbm.c: [DOC] Reformat headings of DBM class
+
Mon Aug 12 12:46:31 2013 Zachary Scott <e@zzak.io>
* lib/yaml.rb, lib/yaml/: [DOC] Document YAML::DBM#key and add
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)