fix trailing whitespace in tutorial
This commit is contained in:
parent
e65bbddc3d
commit
97a1088581
1 changed files with 5 additions and 5 deletions
10
tutorial.md
10
tutorial.md
|
@ -19,7 +19,7 @@ Installing Haskell Bindings
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
From Source:
|
From Source:
|
||||||
|
|
||||||
> $ git clone git://github.com/srp/mongoDB.git
|
> $ git clone git://github.com/srp/mongoDB.git
|
||||||
|
|
||||||
> $ cd mongoDB
|
> $ cd mongoDB
|
||||||
|
@ -44,7 +44,7 @@ Start a MongoDB instance for us to play with:
|
||||||
|
|
||||||
Start up a haskell repl:
|
Start up a haskell repl:
|
||||||
|
|
||||||
> $ ghci
|
> $ ghci
|
||||||
|
|
||||||
Now We'll need to bring in the MongoDB/BSON bindings:
|
Now We'll need to bring in the MongoDB/BSON bindings:
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ Now We'll need to bring in the MongoDB/BSON bindings:
|
||||||
|
|
||||||
> import Database.MongoDB.BSON
|
> import Database.MongoDB.BSON
|
||||||
|
|
||||||
Making A Connection
|
Making A Connection
|
||||||
-------------------
|
-------------------
|
||||||
Open up a connection to your DB instance, using the standard port:
|
Open up a connection to your DB instance, using the standard port:
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ Getting the Databases
|
||||||
|
|
||||||
> dbs <- databaseNames con
|
> dbs <- databaseNames con
|
||||||
> let testdb = head dbs
|
> let testdb = head dbs
|
||||||
|
|
||||||
|
|
||||||
Getting the Collections
|
Getting the Collections
|
||||||
-----------------------
|
-----------------------
|
||||||
|
@ -84,7 +84,7 @@ BSON representation in Haskell
|
||||||
Inserting a Document
|
Inserting a Document
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
> insert con testcol (toBsonDoc [("author", toBson "Mike"), ("text", toBson "My first Blog post!"), ("tags", toBson ["mongodb", "python","pymongo"])])
|
> insert con testcol (toBsonDoc [("author", toBson "Mike"), ("text", toBson "My first Blog post!"), ("tags", toBson ["mongodb", "python","pymongo"])])
|
||||||
|
|
||||||
|
|
||||||
Getting a single document with findOne
|
Getting a single document with findOne
|
||||||
|
|
Loading…
Reference in a new issue