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

* 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
This commit is contained in:
zzak 2013-08-12 03:54:32 +00:00
parent 8a896179ad
commit eadb8b5897
2 changed files with 7 additions and 4 deletions

View file

@ -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

View file

@ -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)