Optimize Program results

This commit is contained in:
Yeechan Lu
2014-03-18 13:17:09 +08:00
parent b9c58adae6
commit 6dcd2e4b03
2 changed files with 14 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ namespace Wox.Infrastructure
private FuzzyMatcher(string query)
{
this.rawQuery = query;
this.rawQuery = query.Trim();
this.reg = GetPattern(query);
}