summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-07-14 09:30:48 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-07-14 17:03:46 +0000
commit5d787e11adfab43295fc7e4b72449cc1bec81594 (patch)
treeefc0153095c0d83f0e683435eb43b464095d16b3
parent5878325f0d8d49fdc7b9a41f5e24617e3f5febf9 (diff)
downloadmongo-5d787e11adfab43295fc7e4b72449cc1bec81594.tar.gz
SERVER-49155 Fix typo in MultiIndexBlock::init()
-rw-r--r--src/mongo/db/catalog/multi_index_block.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/catalog/multi_index_block.cpp b/src/mongo/db/catalog/multi_index_block.cpp
index d8ba9d10fe5..11a197094c6 100644
--- a/src/mongo/db/catalog/multi_index_block.cpp
+++ b/src/mongo/db/catalog/multi_index_block.cpp
@@ -189,9 +189,9 @@ StatusWith<std::vector<BSONObj>> MultiIndexBlock::init(OperationContext* opCtx,
for (const auto& info : indexSpecs) {
if (info["background"].isBoolean() && !info["background"].Bool()) {
LOGV2(20383,
- "Ignoring obselete {{ background: false }} index build option because all "
+ "Ignoring obsolete {{ background: false }} index build option because all "
"indexes are built in the background with the hybrid method",
- "Ignoring obselete { background: false } index build option because all "
+ "Ignoring obsolete { background: false } index build option because all "
"indexes are built in the background with the hybrid method");
}
}