diff options
author | Magnus Hagander <magnus@hagander.net> | 2021-04-09 12:40:14 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2021-04-09 12:40:56 +0200 |
commit | 1798d8f8b6fbb8ff922f640ff2d5dbd3e47064a2 (patch) | |
tree | 30dae93dd350e5274956875925d072744bb8b806 /src | |
parent | 609b0652af00374b89411ea2613fd5bb92bca92c (diff) | |
download | postgresql-1798d8f8b6fbb8ff922f640ff2d5dbd3e47064a2.tar.gz postgresql-1798d8f8b6fbb8ff922f640ff2d5dbd3e47064a2.zip |
Fix typo
Author: Daniel Westermann
Backpatch-through: 9.6
Discussion: https://postgr.es/m/GV0P278MB0483A7AA85BAFCC06D90F453D2739@GV0P278MB0483.CHEP278.PROD.OUTLOOK.COM
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 090abdad8ba..46f1d6406f5 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -1320,7 +1320,7 @@ static struct config_bool ConfigureNamesBool[] = { {"wal_log_hints", PGC_POSTMASTER, WAL_SETTINGS, - gettext_noop("Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications."), + gettext_noop("Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modification."), NULL }, &wal_log_hints, |