spelling: separator (#3751)

This commit is contained in:
Josh Soref
2020-05-26 21:10:58 -04:00
committed by GitHub
parent d5c3a3e5e8
commit 3265549911
9 changed files with 13 additions and 13 deletions

View File

@@ -10,13 +10,13 @@ namespace Wox.Core.Plugin
public static Query Build(string text, Dictionary<string, PluginPair> nonGlobalPlugins)
{
// replace multiple white spaces with one white space
var terms = text.Split(new[] { Query.TermSeperater }, StringSplitOptions.RemoveEmptyEntries);
var terms = text.Split(new[] { Query.TermSeparator }, StringSplitOptions.RemoveEmptyEntries);
if (terms.Length == 0)
{ // nothing was typed
return null;
}
var rawQuery = string.Join(Query.TermSeperater, terms);
var rawQuery = string.Join(Query.TermSeparator, terms);
string actionKeyword, search;
string possibleActionKeyword = terms[0];
List<string> actionParameters;