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 7e0c93247a67613f3949714f3065794f9a95369f..b26b8998c6333b18ed771ffacce37f3b209dc0b5 100644 (file)
@@ -897,7 +897,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 5c69ec31c393f937da168f4fbfd4963b583b7078..f38fc411084eef84ff30612785ccaafc425a439a 100644 (file)
@@ -540,7 +540,7 @@ $dump = slurp_file($plainfile);
 ok($dump !~ qr/^\\connect postgres/m, "database postgres is not dumped");
 ok($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.
  */