summaryrefslogtreecommitdiff
path: root/tcejdb
diff options
context:
space:
mode:
authoradam <adamansky@gmail.com>2013-08-06 10:31:54 +0700
committeradam <adamansky@gmail.com>2013-08-06 10:31:54 +0700
commit5352b544336203b83765929725ea7f2a94256b0f (patch)
tree460b901c0e0161462edde32625d45d258276944b /tcejdb
parentc5360dd8315a14178beb133f8cf83ff7e1c63f41 (diff)
downloadejdb-5352b544336203b83765929725ea7f2a94256b0f.tar.gz
ejdb-5352b544336203b83765929725ea7f2a94256b0f.tar.bz2
ejdb-5352b544336203b83765929725ea7f2a94256b0f.zip
docs in ejdb.h fixed accordingly with #88
Diffstat (limited to 'tcejdb')
-rw-r--r--tcejdb/ejdb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcejdb/ejdb.h b/tcejdb/ejdb.h
index 96ab328..ad36fb5 100644
--- a/tcejdb/ejdb.h
+++ b/tcejdb/ejdb.h
@@ -298,11 +298,11 @@ EJDB_EXPORT bson* ejdbloadbson(EJCOLL *coll, const bson_oid_t *oid);
* - Queries can be used to update records:
*
* $set Field set operation.
- * - {.., '$set' : {'field1' : val1, 'fieldN' : valN}}
+ * - {.., '$set' : {'fpath1' : val1, 'fpathN' : valN}}
* $upsert Atomic upsert. If matching records are found it will be '$set' operation,
* otherwise new record will be inserted
* with fields specified by argment object.
- * - {.., '$upsert' : {'field1' : val1, 'fieldN' : valN}}
+ * - {.., '$upsert' : {'fpath1' : val1, 'fpathN' : valN}}
* $inc Increment operation. Only number types are supported.
* - {.., '$inc' : {'fpath1' : number, ..., 'fpath2' : number}
* $dropall In-place record removal operation.