diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-09-19 06:45:23 -0400 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-09-19 06:45:23 -0400 |
commit | e4861b2322b74619a1124cd72d4987be0f2815e8 (patch) | |
tree | 6e06bfa5dc0917f4c9aac8a866eaf019a5917056 | |
parent | cacf12e92f7854547b8125f8a9d58694a05d1479 (diff) | |
download | postgresql-e4861b2322b74619a1124cd72d4987be0f2815e8.tar.gz postgresql-e4861b2322b74619a1124cd72d4987be0f2815e8.zip |
Improve GUC description punctuation
partial backpatch of 0b039e3a8489c08ec61b4d40382047c389af91ad
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index afa0662ffcd..297e51e5ff7 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -4953,7 +4953,7 @@ static struct config_enum ConfigureNamesEnum[] = { {"stats_fetch_consistency", PGC_USERSET, STATS_CUMULATIVE, - gettext_noop("Sets the consistency of accesses to statistics data"), + gettext_noop("Sets the consistency of accesses to statistics data."), NULL }, &pgstat_fetch_consistency, @@ -5044,7 +5044,7 @@ static struct config_enum ConfigureNamesEnum[] = { {"recovery_prefetch", PGC_SIGHUP, WAL_RECOVERY, - gettext_noop("Prefetch referenced blocks during recovery"), + gettext_noop("Prefetch referenced blocks during recovery."), gettext_noop("Look ahead in the WAL to find references to uncached data.") }, &recovery_prefetch, |