summaryrefslogtreecommitdiff
path: root/src/mongo
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo')
-rw-r--r--src/mongo/client/dbclientinterface.h2
-rw-r--r--src/mongo/db/matcher.h2
-rw-r--r--src/mongo/db/namespace_details.h2
-rw-r--r--src/mongo/db/pipeline/document_source.h18
4 files changed, 12 insertions, 12 deletions
diff --git a/src/mongo/client/dbclientinterface.h b/src/mongo/client/dbclientinterface.h
index efc6590c726..b037556ee58 100644
--- a/src/mongo/client/dbclientinterface.h
+++ b/src/mongo/client/dbclientinterface.h
@@ -906,7 +906,7 @@ namespace mongo {
@param unique if true, indicates that key uniqueness should be enforced for this index
@param name if not specified, it will be created from the keys automatically (which is recommended)
@param cache if set to false, the index cache for the connection won't remember this call
- @param background build index in the background (see mongodb docs/wiki for details)
+ @param background build index in the background (see mongodb docs for details)
@param v index version. leave at default value. (unit tests set this parameter.)
@param ttl. The value of how many seconds before data should be removed from a collection.
@return whether or not sent message to db.
diff --git a/src/mongo/db/matcher.h b/src/mongo/db/matcher.h
index 67f663dd1c6..a11ff54efc2 100644
--- a/src/mongo/db/matcher.h
+++ b/src/mongo/db/matcher.h
@@ -162,7 +162,7 @@ namespace mongo {
e.g.
db.foo.find( { a : 3 } );
- { a : 3 } is the pattern object. See wiki documentation for full info.
+ { a : 3 } is the pattern object. See manual for full info.
GT/LT:
{ a : { $gt : 3 } }
diff --git a/src/mongo/db/namespace_details.h b/src/mongo/db/namespace_details.h
index 442ace8c738..28416f4abf0 100644
--- a/src/mongo/db/namespace_details.h
+++ b/src/mongo/db/namespace_details.h
@@ -218,7 +218,7 @@ namespace mongo {
int idxNo(const IndexDetails& idx);
/* multikey indexes are indexes where there are more than one key in the index
- for a single document. see multikey in wiki.
+ for a single document. see multikey in docs.
for these, we have to do some dedup work on queries.
*/
bool isMultikey(int i) const { return (multiKeyIndexBits & (((unsigned long long) 1) << i)) != 0; }
diff --git a/src/mongo/db/pipeline/document_source.h b/src/mongo/db/pipeline/document_source.h
index 9701a4a9cd3..4f24aabc360 100644
--- a/src/mongo/db/pipeline/document_source.h
+++ b/src/mongo/db/pipeline/document_source.h
@@ -509,9 +509,9 @@ namespace mongo {
This is used after filter analysis has moved as many filters to
as early a point as possible in the document processing pipeline.
- See db/Matcher.h and the associated wiki documentation for the
- format. This conversion is used to move back to the low-level
- find() Cursor mechanism.
+ See db/Matcher.h and the associated documentation for the format.
+ This conversion is used to move back to the low-level find()
+ Cursor mechanism.
@param pBuilder the builder to write to
*/
@@ -576,9 +576,9 @@ namespace mongo {
This is used after filter analysis has moved as many filters to
as early a point as possible in the document processing pipeline.
- See db/Matcher.h and the associated wiki documentation for the
- format. This conversion is used to move back to the low-level
- find() Cursor mechanism.
+ See db/Matcher.h and the associated documentation for the format.
+ This conversion is used to move back to the low-level find()
+ Cursor mechanism.
@param pBuilder the builder to write to
*/
@@ -739,9 +739,9 @@ namespace mongo {
This is used after filter analysis has moved as many filters to
as early a point as possible in the document processing pipeline.
- See db/Matcher.h and the associated wiki documentation for the
- format. This conversion is used to move back to the low-level
- find() Cursor mechanism.
+ See db/Matcher.h and the associated documentation for the format.
+ This conversion is used to move back to the low-level find()
+ Cursor mechanism.
@param pBuilder the builder to write to
*/