summaryrefslogtreecommitdiff
path: root/nejdb
diff options
context:
space:
mode:
authoradam <adamansky@gmail.com>2013-06-23 22:49:41 +0700
committeradam <adamansky@gmail.com>2013-06-23 22:49:41 +0700
commit679c0ee6909a1a23da6c479a32c4a824f2c55075 (patch)
tree4f51e6c6dee5ea8b14065ad460ee3f2a7fecdb3f /nejdb
parent3ec5c569197357afc0346cd702a0786c133f3f45 (diff)
downloadejdb-679c0ee6909a1a23da6c479a32c4a824f2c55075.tar.gz
ejdb-679c0ee6909a1a23da6c479a32c4a824f2c55075.tar.bz2
ejdb-679c0ee6909a1a23da6c479a32c4a824f2c55075.zip
#24
Diffstat (limited to 'nejdb')
-rw-r--r--nejdb/README.md2
-rw-r--r--nejdb/sample/Program.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/nejdb/README.md b/nejdb/README.md
index ffc27a5..c85cdf2 100644
--- a/nejdb/README.md
+++ b/nejdb/README.md
@@ -25,7 +25,7 @@ Use the following solution configs to debug and test: `DebugUnix`, `ReleaseUnix`
Windows
--------------------------------
Download appropriate [EJDB binary distribution](https://github.com/Softmotions/ejdb/blob/master/tcejdb/WIN32.md).
-Then add the `tcejdbdll.dll` directory into search `PATH`.
+Then add the directory containing the `tcejdbdll.dll` into search `PATH`.
Use the following solution configs to debug and test: `DebugWindows`, `ReleaseWindows`
diff --git a/nejdb/sample/Program.cs b/nejdb/sample/Program.cs
index fc88525..bda61c6 100644
--- a/nejdb/sample/Program.cs
+++ b/nejdb/sample/Program.cs
@@ -56,7 +56,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"]));