1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-19 13:42:17 +03:00

Fix a few duplicate words in comments

These are all new to v18

Author: David Rowley <dgrowleyml@gmail.com>
Discussion: https://postgr.es/m/CAApHDvrMcr8XD107H3NV=WHgyBcu=sx5+7=WArr-n_cWUqdFXQ@mail.gmail.com
This commit is contained in:
David Rowley
2025-04-21 10:41:18 +12:00
parent 8180136652
commit 84fd3bc141
9 changed files with 14 additions and 14 deletions

View File

@@ -551,7 +551,7 @@ PGLC_localeconv(void)
"could not get lconv for LC_MONETARY = \"%s\", LC_NUMERIC = \"%s\": %m",
locale_monetary, locale_numeric);
/* Must copy data now now so we can re-encode it. */
/* Must copy data now so we can re-encode it. */
extlconv = &tmp;
worklconv.decimal_point = strdup(extlconv->decimal_point);
worklconv.thousands_sep = strdup(extlconv->thousands_sep);

View File

@@ -1478,7 +1478,7 @@ ProcessGetMemoryContextInterrupt(void)
summary);
/*
* Allocate memory in this process's DSA for storing statistics of the the
* Allocate memory in this process's DSA for storing statistics of the
* memory contexts upto max_stats, for contexts that don't fit within a
* limit, a cumulative total is written as the last record in the DSA
* segment.
@@ -1488,8 +1488,8 @@ ProcessGetMemoryContextInterrupt(void)
LWLockAcquire(&memCxtArea->lw_lock, LW_EXCLUSIVE);
/*
* Create a DSA and send handle to the the client process after storing
* the context statistics. If number of contexts exceed a predefined
* Create a DSA and send handle to the client process after storing the
* context statistics. If number of contexts exceed a predefined
* limit(8MB), a cumulative total is stored for such contexts.
*/
if (memCxtArea->memstats_dsa_handle == DSA_HANDLE_INVALID)