summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@10gen.com>2015-07-31 13:32:55 -0700
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-07-31 18:08:14 -0400
commitce1019eabc51305ec7fabc1808605b9c9fb24523 (patch)
treecc7e0f837b2faf6d6d2f708cfe270fcf816b6a3d
parent4cc77119326796bdb6c405c577cb3a8fcb4b1280 (diff)
downloadmongo-ce1019eabc51305ec7fabc1808605b9c9fb24523.tar.gz
SERVER-19698: Typo in error message
closes #1006 Signed-off-by: Mark Benvenuto <mark.benvenuto@mongodb.com>
-rw-r--r--src/mongo/db/repl/isself.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/repl/isself.cpp b/src/mongo/db/repl/isself.cpp
index 2146a834588..39ddfbc037f 100644
--- a/src/mongo/db/repl/isself.cpp
+++ b/src/mongo/db/repl/isself.cpp
@@ -213,7 +213,7 @@ bool isSelf(const HostAndPort& hostAndPort) {
return me;
} catch (const std::exception& e) {
- warning() << "could't check isSelf (" << hostAndPort << ") " << e.what() << std::endl;
+ warning() << "couldn't check isSelf (" << hostAndPort << ") " << e.what() << std::endl;
}
return false;