summaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/guc.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-09-14 06:42:07 +0200
committerPeter Eisentraut <peter@eisentraut.org>2020-09-14 06:42:30 +0200
commit3e0242b24c3c059870890644b69d6c4491a45651 (patch)
tree3c3f13a5716e33380a9cf95c1f87a2990f9881dc /src/backend/utils/misc/guc.c
parentac673a1aaff197f3e01f7bac69da0dd700854e13 (diff)
Message fixes and style improvements
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-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 73518d98662..596bcb7b842 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -2837,7 +2837,7 @@ static struct config_int ConfigureNamesInt[] =
gettext_noop("Sets the minimum execution time above which "
"a sample of statements will be logged."
" Sampling is determined by log_statement_sample_rate."),
- gettext_noop("Zero log a sample of all queries. -1 turns this feature off."),
+ gettext_noop("Zero logs a sample of all queries. -1 turns this feature off."),
GUC_UNIT_MS
},
&log_min_duration_sample,
@@ -3700,7 +3700,7 @@ static struct config_string ConfigureNamesString[] =
{
{"restore_command", PGC_POSTMASTER, WAL_ARCHIVE_RECOVERY,
- gettext_noop("Sets the shell command that will retrieve an archived WAL file."),
+ gettext_noop("Sets the shell command that will be called to retrieve an archived WAL file."),
NULL
},
&recoveryRestoreCommand,