From 442ed03027a07f2ee1da6e34a166d6d3da9e16c0 Mon Sep 17 00:00:00 2001 From: "Scott R. Parish" Date: Sat, 13 Mar 2010 22:09:38 -0600 Subject: [PATCH] module level documentation to point to tutorials --- Database/MongoDB.hs | 17 +++++++++++++++++ mongoDB.cabal | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Database/MongoDB.hs b/Database/MongoDB.hs index 18fc07c..eb02093 100644 --- a/Database/MongoDB.hs +++ b/Database/MongoDB.hs @@ -23,6 +23,23 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -} +-- | A driver for MongoDB +-- +-- This module lets you connect to MongoDB, do inserts, queries, +-- updates, etc. Also has many convience functions inspired by HDBC +-- such as more easily converting between the BsonValue types and +-- native Haskell types. +-- +-- * Tutorial for this driver: +-- +-- +-- * Map/Reduce example for this driver: +-- +-- +-- * MongoDB: +-- +-- + module Database.MongoDB ( -- * Connection diff --git a/mongoDB.cabal b/mongoDB.cabal index b506a2e..9afb67e 100644 --- a/mongoDB.cabal +++ b/mongoDB.cabal @@ -7,7 +7,7 @@ Copyright: Copyright (c) 2010-2010 Scott Parish homepage: http://github.com/srp/mongoDB Category: Database Synopsis: A driver for MongoDB -Description: This driver lets you connect to MongoDB, do inserts, +Description: This module lets you connect to MongoDB, do inserts, queries, updates, etc. Also has many convience functions inspired by HDBC such as more easily converting between the BsonValue types and native Haskell types.