diff options
author | Veres Lajos <vlajos@gmail.com> | 2014-06-06 12:03:42 -0400 |
---|---|---|
committer | Matt Kangas <matt.kangas@mongodb.com> | 2014-06-09 23:43:00 -0400 |
commit | a98f839cf93baba5e424c427f4ed73395e7c3c1e (patch) | |
tree | 06ee775f5baad4c37bd72bd831d1f1061dba63f3 /src/mongo/db/fts | |
parent | fceab66c30c64d5c9de1454c2c412445ef8b0362 (diff) | |
download | mongo-a98f839cf93baba5e424c427f4ed73395e7c3c1e.tar.gz |
SERVER-9634 typo fixes
Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
Diffstat (limited to 'src/mongo/db/fts')
-rw-r--r-- | src/mongo/db/fts/stop_words.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/fts/stop_words.h b/src/mongo/db/fts/stop_words.h index 22ec22f3fa8..b10990408f7 100644 --- a/src/mongo/db/fts/stop_words.h +++ b/src/mongo/db/fts/stop_words.h @@ -52,7 +52,7 @@ namespace mongo { size_t numStopWords() const { return _words.size(); } - static const StopWords* getStopWords( const FTSLanguage& langauge ); + static const StopWords* getStopWords( const FTSLanguage& language ); private: ~StopWords(){} unordered_set<std::string> _words; |