X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fstemmer.c;h=f221799868875f7f1e9157bfdb875e55a1715e46;hp=76b772ad0ecb06a0ff1a896ff1163fcd1ccab9e2;hb=c2831e6edcef94c16a2504ae4b25a15d35dd666d;hpb=64dbcabe91775e26370b75ee899c435f36389989 diff --git a/src/stemmer.c b/src/stemmer.c index 76b772a..f221799 100644 --- a/src/stemmer.c +++ b/src/stemmer.c @@ -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; }