From 3ec5c569197357afc0346cd702a0786c133f3f45 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 23 Jun 2013 22:48:18 +0700 Subject: [PATCH] #24 --- nejdb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nejdb/README.md b/nejdb/README.md index 7bccfc0..ffc27a5 100644 --- a/nejdb/README.md +++ b/nejdb/README.md @@ -76,7 +76,7 @@ namespace sample { using (var cur = q.Find()) { Console.WriteLine("Found " + cur.Length + " parrots"); foreach (var e in cur) { - //fetch `name` and the first element of likes array from current BSON iterator. + //fetch the `name` and the first element of likes array from the current BSON iterator. //alternatively you can fetch whole document from the iterator: `e.ToBSONDocument()` BSONDocument rdoc = e.ToBSONDocument("name", "likes.0"); Console.WriteLine(string.Format("{0} likes the '{1}'", rdoc["name"], rdoc["likes.0"])); -- 2.7.4