summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2010-06-14 12:31:10 -0700
committerAaron <aaron@10gen.com>2010-06-14 12:31:10 -0700
commit1e4a97089ee436fa1c164d2caa07097559a64cef (patch)
tree97bbe14e7a8a7e4ff690971f02a3f56b521aee82
parent6d1c345c40a11ce6572f45ca7c3c4ce236dbe90c (diff)
parent5b45fbea908b7ed4511ecc0b451b93bd0eb421e0 (diff)
downloadmongo-1e4a97089ee436fa1c164d2caa07097559a64cef.tar.gz
Merge branch 'master' of github.com:mongodb/mongo
-rw-r--r--client/dbclient.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/client/dbclient.h b/client/dbclient.h
index 702588d638d..0bb2cf75601 100644
--- a/client/dbclient.h
+++ b/client/dbclient.h
@@ -315,13 +315,13 @@ namespace mongo {
If the collection already exists, no action occurs.
- ns: fully qualified collection name
- size: desired initial extent size for the collection.
- Must be <= 1000000000 for normal collections.
- For fixed size (capped) collections, this size is the total/max size of the
- collection.
- capped: if true, this is a fixed size collection (where old data rolls out).
- max: maximum number of objects if capped (optional).
+ @param ns fully qualified collection name
+ @param size desired initial extent size for the collection.
+ Must be <= 1000000000 for normal collections.
+ For fixed size (capped) collections, this size is the total/max size of the
+ collection.
+ @param capped if true, this is a fixed size collection (where old data rolls out).
+ @param max maximum number of objects if capped (optional).
returns true if successful.
*/