Update namespacing of stopwords file

This commit is contained in:
Starbeamrainbowlabs 2018-09-26 20:03:22 +01:00
parent 64025561e3
commit 02e6b2ef8e
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ namespace LibSearchBox
}
public Index(string inSource, IndexOptions options)
: this(inSource, EmbeddedFiles.EnumerateLines("SearchBox.EmbeddedFiles.Stopwords.txt"), options)
: this(inSource, EmbeddedFiles.EnumerateLines("LibSearchBox.EmbeddedFiles.Stopwords.txt"), options)
{
}
public Index(string inSource) : this(inSource, IndexOptions.ExcludeStopwords)