summaryrefslogtreecommitdiff
path: root/src/mongo/db/sorter/sorter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/sorter/sorter.h')
-rw-r--r--src/mongo/db/sorter/sorter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/sorter/sorter.h b/src/mongo/db/sorter/sorter.h
index 3789bccff63..c5955e67911 100644
--- a/src/mongo/db/sorter/sorter.h
+++ b/src/mongo/db/sorter/sorter.h
@@ -62,7 +62,7 @@
* // Return *this if your type doesn't have an unowned state
* Type getOwned() const;
*
- * Comparators are functors that that compare pair<Key, Value> and return an
+ * Comparators are functors that that compare std::pair<Key, Value> and return an
* int less than, equal to, or greater than 0 depending on how the two pairs
* compare with the same semantics as memcmp.
* Example for Key=BSONObj, Value=int: