diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-06-22 00:33:20 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-06-22 00:45:34 +0300 |
commit | e2a0cb1a803b8a4a2b705728e13d61e6d2b17a71 (patch) | |
tree | 95c564e77a1d56bd8af0d7a36154fa2d056b7403 /src/backend/utils/misc/guc.c | |
parent | ca59dfa6f727fe3bf3a01904ec30e87f7fa5a67e (diff) |
Message style and spelling improvements
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 92391eda2fd..1c6f1977483 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -2965,7 +2965,7 @@ static struct config_string ConfigureNamesString[] = { {"synchronous_standby_names", PGC_SIGHUP, WAL_REPLICATION, - gettext_noop("List of potential standby names to synchronise with."), + gettext_noop("List of potential standby names to synchronize with."), NULL, GUC_LIST_INPUT }, @@ -8234,7 +8234,7 @@ check_temp_buffers(int *newval, void **extra, GucSource source) */ if (NLocBuffer && NLocBuffer != *newval) { - GUC_check_errdetail("\"temp_buffers\" cannot be changed after any temp tables have been accessed in the session."); + GUC_check_errdetail("\"temp_buffers\" cannot be changed after any temporary tables have been accessed in the session."); return false; } return true; |