Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #1594

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jstests/sharding/count2.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ s1.adminCommand({

assert.eq(3, db1.count({name: {$gte: "aaa", $lt: "ddd"}}), "post count mongos1");

// The second mongos still thinks its shard mapping is valid and accepts a cound
// The second mongos still thinks its shard mapping is valid and accepts a count
print("before sleep: " + Date());
sleep(2000);
print("after sleep: " + Date());
Expand Down
2 changes: 1 addition & 1 deletion jstests/sharding/noUpdateButN1inAnotherCollection.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ adminSA.runCommand({shardCollection: ns, key: {_id: 1}});
try {
s.stopBalancer();
} catch (e) {
print("coundn't stop balancer via command");
print("couldn't stop balancer via command");
}

adminSA.settings.update({_id: 'balancer'}, {$set: {stopped: true}});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class ConstructorTracker {
int countdown,
const std::string& error_description) {
return absl::Substitute(
"With coundtown at $0:\n"
"With countdown at $0:\n"
" $1\n"
" Object originally constructed by $2\n"
" Object address: $3\n",
Expand Down