diff options
author | Peter Eisentraut | 2016-07-12 22:37:34 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-07-12 22:37:34 +0000 |
commit | 5d4050064bf3f2be056a4a887ec11aa14d0d2562 (patch) | |
tree | 9d62c2456152c1382b085075005b509015654c8c | |
parent | b9fc9f7c3c4096aca69261af305c679ffe74c32b (diff) |
Add serial comma and quoting to message
-rw-r--r-- | src/backend/tsearch/spell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tsearch/spell.c b/src/backend/tsearch/spell.c index c43c206c03..835851655f 100644 --- a/src/backend/tsearch/spell.c +++ b/src/backend/tsearch/spell.c @@ -1263,8 +1263,8 @@ NIImportOOAffixes(IspellDict *Conf, const char *filename) else if (STRNCMP(s, "default") != 0) ereport(ERROR, (errcode(ERRCODE_CONFIG_FILE_ERROR), - errmsg("Ispell dictionary supports only default, " - "long and num flag value"))); + errmsg("Ispell dictionary supports only \"default\", " + "\"long\", and \"num\" flag value"))); } } |