From: Peter Eisentraut Date: Mon, 19 Sep 2022 10:45:23 +0000 (-0400) Subject: Improve GUC description punctuation X-Git-Tag: REL_15_RC1~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4861b2322b74619a1124cd72d4987be0f2815e8;p=thirdparty%2Fpostgresql.git Improve GUC description punctuation partial backpatch of 0b039e3a8489c08ec61b4d40382047c389af91ad --- 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,