From 5d0d3544a6aa754cbb6dece5a5014799197d97ec Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Tue, 23 Feb 2010 21:38:18 +0100 Subject: [PATCH] README: now markdown --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e62b7e6..a8edbd0 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,10 @@ Sample Usage env = Bdb::Env.new(0) env_flags = Bdb::DB_CREATE | # Create the environment if it does not already exist. - Bdb::DB_INIT_TXN | # Initialize transactions - Bdb::DB_INIT_LOCK | # Initialize locking. - Bdb::DB_INIT_LOG | # Initialize logging - Bdb::DB_INIT_MPOOL # Initialize the in-memory cache. + Bdb::DB_INIT_TXN | # Initialize transactions + Bdb::DB_INIT_LOCK | # Initialize locking. + Bdb::DB_INIT_LOG | # Initialize logging + Bdb::DB_INIT_MPOOL # Initialize the in-memory cache. env.open(File.join(File.dirname(__FILE__), 'tmp'), env_flags, 0); db = env.db