]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Improve GUC description punctuation
authorPeter Eisentraut <peter@eisentraut.org>
Mon, 19 Sep 2022 10:45:23 +0000 (06:45 -0400)
committerPeter Eisentraut <peter@eisentraut.org>
Mon, 19 Sep 2022 10:45:23 +0000 (06:45 -0400)
partial backpatch of 0b039e3a8489c08ec61b4d40382047c389af91ad

src/backend/utils/misc/guc.c

index afa0662ffcdf75b31ccfe9704828a81acced1d05..297e51e5ff70d8d8746972fca8ee0673ab9e0d47 100644 (file)
@@ -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,