diff options
| author | Peter Eisentraut | 2007-12-27 13:02:48 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2007-12-27 13:02:48 +0000 |
| commit | f5f1355dc4dccea18ce9b8af14ea48038507409a (patch) | |
| tree | 1013057d91bbefa721a9e1006f4c62d58b51bc68 /src/backend/tsearch | |
| parent | a82cfcb9ee9b100f48e442e9017b1fae27caa7be (diff) | |
Wording improvements
Diffstat (limited to 'src/backend/tsearch')
| -rw-r--r-- | src/backend/tsearch/ts_utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/tsearch/ts_utils.c b/src/backend/tsearch/ts_utils.c index 3aeb478a339..4edd47a0822 100644 --- a/src/backend/tsearch/ts_utils.c +++ b/src/backend/tsearch/ts_utils.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tsearch/ts_utils.c,v 1.7 2007/11/15 22:25:16 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/tsearch/ts_utils.c,v 1.8 2007/12/27 13:02:48 petere Exp $ * *------------------------------------------------------------------------- */ @@ -69,7 +69,7 @@ comparestr(const void *a, const void *b) } /* - * Reads a stopword file. Each word is run through 'wordop' + * Reads a stop-word file. Each word is run through 'wordop' * function, if given. wordop may either modify the input in-place, * or palloc a new version. */ @@ -89,7 +89,7 @@ readstoplist(const char *fname, StopList *s, char *(*wordop) (const char *)) if ((hin = AllocateFile(filename, "r")) == NULL) ereport(ERROR, (errcode(ERRCODE_CONFIG_FILE_ERROR), - errmsg("could not open stopword file \"%s\": %m", + errmsg("could not open stop-word file \"%s\": %m", filename))); while ((line = t_readline(hin)) != NULL) |
