From 0bfebc8bc4ce9dae05ed34e08776ffafbe485df7 Mon Sep 17 00:00:00 2001
From: Victor Toni <victor.toni@gmail.com>
Date: Wed, 10 Apr 2024 23:31:18 +0200
Subject: [PATCH] Fix typos

---
 jstests/sharding/count2.js                                      | 2 +-
 jstests/sharding/noUpdateButN1inAnotherCollection.js            | 2 +-
 .../dist/absl/base/internal/exception_safety_testing.h          | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/jstests/sharding/count2.js b/jstests/sharding/count2.js
index 82d188f990fb2..404179c2aca5f 100644
--- a/jstests/sharding/count2.js
+++ b/jstests/sharding/count2.js
@@ -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());
diff --git a/jstests/sharding/noUpdateButN1inAnotherCollection.js b/jstests/sharding/noUpdateButN1inAnotherCollection.js
index 1b66559bc6322..7eaa4b8462f00 100644
--- a/jstests/sharding/noUpdateButN1inAnotherCollection.js
+++ b/jstests/sharding/noUpdateButN1inAnotherCollection.js
@@ -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}});
diff --git a/src/third_party/abseil-cpp/dist/absl/base/internal/exception_safety_testing.h b/src/third_party/abseil-cpp/dist/absl/base/internal/exception_safety_testing.h
index c1061544070e4..2a1f87de622bf 100644
--- a/src/third_party/abseil-cpp/dist/absl/base/internal/exception_safety_testing.h
+++ b/src/third_party/abseil-cpp/dist/absl/base/internal/exception_safety_testing.h
@@ -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",