mirror of
https://github.com/postgres/postgres.git
synced 2025-11-09 06:21:09 +03:00
Make GUC_check_errdetail messages full sentences
They were all missing punctuation, one was missing initial capital. Per our message style guidelines. No backpatch, to avoid breaking existing translations.
This commit is contained in:
@@ -358,7 +358,7 @@ check_slru_buffers(const char *name, int *newval)
|
||||
if (*newval % SLRU_BANK_SIZE == 0)
|
||||
return true;
|
||||
|
||||
GUC_check_errdetail("\"%s\" must be a multiple of %d", name,
|
||||
GUC_check_errdetail("\"%s\" must be a multiple of %d.", name,
|
||||
SLRU_BANK_SIZE);
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user