Fix typo
authorÁlvaro Herrera <alvherre@kurilemu.de>
Tue, 18 Nov 2025 18:31:23 +0000 (19:31 +0100)
committerÁlvaro Herrera <alvherre@kurilemu.de>
Tue, 18 Nov 2025 18:31:23 +0000 (19:31 +0100)
src/backend/executor/nodeHash.c
src/bin/pg_dump/t/005_pg_dump_filterfile.pl
src/interfaces/libpq/fe-secure-openssl.c

index 29b43e4d4547274bb1dcc264db509a048e7859a4..774e7f05b486a3eb38607ab62bba91d65bd5a816 100644 (file)
@@ -896,7 +896,7 @@ ExecChooseHashTableSize(double ntuples, int tupwidth, bool useskew,
     */
    while (nbatch > 1)
    {
-       /* Check that buckets wont't overflow MaxAllocSize */
+       /* Check that buckets won't overflow MaxAllocSize */
        if (nbuckets > (MaxAllocSize / sizeof(HashJoinTuple) / 2))
            break;
 
index 7a47ad17da9b4520e49a9320ad24f8b10aa54044..bd848a84b2ebe1f509d3a1cda33c3a4844f48d14 100644 (file)
@@ -561,7 +561,7 @@ $dump = slurp_file($plainfile);
 unlike($dump, qr/^\\connect postgres/m, "database postgres is not dumped");
 like($dump, qr/^\\connect template1/m, "database template1 is dumped");
 
-# Make sure this option dont break the existing limitation of using
+# Make sure this option doesn't break the existing limitation of using
 # --globals-only with exclusions
 command_fails_like(
    [
index 51dd7b9fec0ab011a93859f6a4c397d0efc01a5e..d2045c73ae64b0fcb7863d66a49ceac5dc43a7d6 100644 (file)
@@ -694,7 +694,7 @@ static unsigned char alpn_protos[] = PG_ALPN_PROTOCOL_VECTOR;
  * 3.5 introduced stub function to set the callback for OpenSSL compatibility
  * but the callback is never invoked.
  *
- * Error messages added to the connection object wont be printed anywhere if
+ * Error messages added to the connection object won't be printed anywhere if
  * the connection is successful.  Errors in processing keylogging are printed
  * to stderr to overcome this.
  */