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.