X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fstemmer.c;h=3ededfd6d84aa0bb33e00b0029c27dc87a4c97c4;hp=76b772ad0ecb06a0ff1a896ff1163fcd1ccab9e2;hb=d51b21c6f41a021f21078921a0de50106264d55e;hpb=5242cb5a8634bfa38b9333ff7f903e718ac6e292 diff --git a/src/stemmer.c b/src/stemmer.c index 76b772a..3ededfd 100644 --- a/src/stemmer.c +++ b/src/stemmer.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ @@ -55,14 +55,14 @@ yaz_stemmer_p yaz_stemmer_snowball_create(const char *locale, const char *rule, locale, rule, charenc, algorithm); return 0; } - yaz_log(YLOG_DEBUG, "created snowball stemmer: algoritm %s charenc %s ", algorithm, charenc); + yaz_log(YLOG_DEBUG, "created snowball stemmer: algorithm %s charenc %s ", algorithm, charenc); yaz_stemmer = xmalloc(sizeof(*yaz_stemmer)); yaz_stemmer->implementation = yaz_snowball; yaz_stemmer->locale = xstrdup(locale); yaz_stemmer->rule = xstrdup(rule); yaz_stemmer->sb_stemmer = stemmer; - yaz_log(YLOG_DEBUG, "created snowball stemmer: algoritm %s charenc %s ", algorithm, charenc); + yaz_log(YLOG_DEBUG, "created snowball stemmer: algorithm %s charenc %s ", algorithm, charenc); return yaz_stemmer; }