aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/guc.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-09-23 13:37:33 +0200
committerPeter Eisentraut <peter@eisentraut.org>2019-09-23 13:38:39 +0200
commit887248e97e2da6f602ddf22aaaaf8cb41d0d010d (patch)
treeecaae601e6b5bd19ac930b107c0d1ec47128938e /src/backend/utils/misc/guc.c
parent467c1d9107e15a44a0ca3c46f0c7ebeeb7cfa208 (diff)
downloadpostgresql-887248e97e2da6f602ddf22aaaaf8cb41d0d010d.tar.gz
postgresql-887248e97e2da6f602ddf22aaaaf8cb41d0d010d.zip
Message style fixes
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r--src/backend/utils/misc/guc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 90ffd893394..2178e1cf5e2 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -1042,7 +1042,7 @@ static struct config_bool ConfigureNamesBool[] =
},
{
{"enable_partition_pruning", PGC_USERSET, QUERY_TUNING_METHOD,
- gettext_noop("Enable plan-time and run-time partition pruning."),
+ gettext_noop("Enables plan-time and run-time partition pruning."),
gettext_noop("Allows the query planner and executor to compare partition "
"bounds to conditions in the query to determine which "
"partitions must be scanned."),
@@ -3493,7 +3493,7 @@ static struct config_string ConfigureNamesString[] =
{
{"recovery_target_timeline", PGC_POSTMASTER, WAL_RECOVERY_TARGET,
- gettext_noop("Specifies the timeline to recovery into."),
+ gettext_noop("Specifies the timeline to recover into."),
NULL
},
&recovery_target_timeline_string,
@@ -3503,7 +3503,7 @@ static struct config_string ConfigureNamesString[] =
{
{"recovery_target", PGC_POSTMASTER, WAL_RECOVERY_TARGET,
- gettext_noop("Set to 'immediate' to end recovery as soon as a consistent state is reached."),
+ gettext_noop("Set to \"immediate\" to end recovery as soon as a consistent state is reached."),
NULL
},
&recovery_target_string,