From 02e6b2ef8edcebdc3176cbc50bb229d49a548171 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 26 Sep 2018 20:03:22 +0100 Subject: [PATCH] Update namespacing of stopwords file --- SearchBox/Index.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SearchBox/Index.cs b/SearchBox/Index.cs index 7509e6c..6d27f33 100644 --- a/SearchBox/Index.cs +++ b/SearchBox/Index.cs @@ -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)