aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-09-19 06:45:23 -0400
committerPeter Eisentraut <peter@eisentraut.org>2022-09-19 06:45:23 -0400
commite4861b2322b74619a1124cd72d4987be0f2815e8 (patch)
tree6e06bfa5dc0917f4c9aac8a866eaf019a5917056 /src
parentcacf12e92f7854547b8125f8a9d58694a05d1479 (diff)
downloadpostgresql-e4861b2322b74619a1124cd72d4987be0f2815e8.tar.gz
postgresql-e4861b2322b74619a1124cd72d4987be0f2815e8.zip
Improve GUC description punctuation
partial backpatch of 0b039e3a8489c08ec61b4d40382047c389af91ad
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/guc.c4
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,