diff options
author | David Rowley <drowley@postgresql.org> | 2025-04-21 10:41:18 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2025-04-21 10:41:18 +1200 |
commit | 84fd3bc141039b32f25c3c9f6157163a56ab5f66 (patch) | |
tree | 7730cc9fb8afa2106520a0199b7146f29e9c6e52 /src/backend/utils/adt/pg_locale.c | |
parent | 818013665259d4242ba641aad705ebe5a3e2db8e (diff) |
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
Diffstat (limited to 'src/backend/utils/adt/pg_locale.c')
-rw-r--r-- | src/backend/utils/adt/pg_locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index ab6317de5ae..a858f27cadc 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -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); |