summaryrefslogtreecommitdiff
path: root/src/mongo/db/fts/fts_language.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 12:46:52 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 14:43:05 -0400
commitf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (patch)
tree6436772fbceb28f07bbfaee528d700159beb0cec /src/mongo/db/fts/fts_language.h
parentc10e8282a7af38f8512e911a14889e14df8a2c6a (diff)
downloadmongo-f2bfd36a6f3eb7e7e2587268be3cc12636703d42.tar.gz
SERVER-13256: Remove pch - qualify std in headers
Diffstat (limited to 'src/mongo/db/fts/fts_language.h')
-rw-r--r--src/mongo/db/fts/fts_language.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/fts/fts_language.h b/src/mongo/db/fts/fts_language.h
index 3a7a471bc32..5877c8a2756 100644
--- a/src/mongo/db/fts/fts_language.h
+++ b/src/mongo/db/fts/fts_language.h
@@ -71,13 +71,13 @@ namespace mongo {
FTSLanguage();
/**
- * Returns the language as a string in canonical form (lowercased English name). It is
+ * Returns the language as a std::string in canonical form (lowercased English name). It is
* an error to call str() on an uninitialized language.
*/
const std::string& str() const;
/**
- * Register string 'languageName' as a new language with text index version
+ * Register std::string 'languageName' as a new language with text index version
* 'textIndexVersion'. Saves the resulting language to out-argument 'languageOut'.
* Subsequent calls to FTSLanguage::make() will recognize the newly-registered language
* string.
@@ -97,7 +97,7 @@ namespace mongo {
/**
* Return the FTSLanguage associated with the given language string. Returns an error
- * Status if an invalid language string is passed.
+ * Status if an invalid language std::string is passed.
*
* For textIndexVersion=TEXT_INDEX_VERSION_2, language strings are
* case-insensitive, and need to be in one of the two following forms:
@@ -114,7 +114,7 @@ namespace mongo {
TextIndexVersion textIndexVersion );
private:
- // String representation of language in canonical form.
+ // std::string representation of language in canonical form.
std::string _canonicalName;
};