Merge pull request #514 from staff0rd/websearchsetting_spelling

Fix spelling
This commit is contained in:
bao-qian
2016-03-11 00:53:13 +00:00

View File

@@ -17,11 +17,11 @@ namespace Wox.Plugin.WebSearch
private bool _isUpdate;
private WebSearch _updateWebSearch;
private readonly PluginInitContext _context;
private readonly WebSearchPlugin _plguin;
private readonly WebSearchPlugin _plugin;
public WebSearchSetting(WebSearchesSetting settingWidow)
{
_plguin = settingWidow.Plugin;
_plugin = settingWidow.Plugin;
_context = settingWidow.Context;
_settingWindow = settingWidow;
InitializeComponent();
@@ -85,7 +85,7 @@ namespace Wox.Plugin.WebSearch
{
try
{
_plguin.NotifyActionKeywordsUpdated(_updateWebSearch.ActionKeyword, newActionKeyword);
_plugin.NotifyActionKeywordsUpdated(_updateWebSearch.ActionKeyword, newActionKeyword);
}
catch (WoxPluginException exception)
{
@@ -103,7 +103,7 @@ namespace Wox.Plugin.WebSearch
{
try
{
_plguin.NotifyActionKeywordsAdded(newActionKeyword);
_plugin.NotifyActionKeywordsAdded(newActionKeyword);
}
catch (WoxPluginException exception)
{