From 78d1e6227df34aad0579e032ba06be361893b32a Mon Sep 17 00:00:00 2001 From: Adarsh Upase <138318435+Adarshupase@users.noreply.github.com> Date: Thu, 16 Oct 2025 02:40:32 +0530 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20comment:=20"hash=20see"=20?= =?UTF-8?q?=E2=86=92=20"hash=20seed"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes a minor typo in the WARNING comment of BSONElementHasher. "hash see" was mistakenly used instead of "hash seed". --- src/mongo/db/hasher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mongo/db/hasher.h b/src/mongo/db/hasher.h index fb0dbf73f68c7..93e18188991a9 100644 --- a/src/mongo/db/hasher.h +++ b/src/mongo/db/hasher.h @@ -51,7 +51,7 @@ class BSONElementHasher { * by choosing from among a family of hash functions. When it is not specified, * use this. * - * WARNING: do not change the hash see value. Hash-based sharding clusters will + * WARNING: do not change the hash seed value. Hash-based sharding clusters will * expect that value to be zero. */ static constexpr HashSeed const DEFAULT_HASH_SEED = 0;