Skip to content

Commit 44b3f19

Browse files
committed
fix typo
1 parent c02fa4b commit 44b3f19

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Flow.Launcher.Infrastructure.Logger;
88
using Flow.Launcher.Plugin.SharedCommands;
99
using Flow.Launcher.Plugin.Explorer.Search;
10-
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink;
10+
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
1111
using System.Linq;
1212
using MessageBox = System.Windows.Forms.MessageBox;
1313
using MessageBoxIcon = System.Windows.Forms.MessageBoxIcon;

Plugins/Flow.Launcher.Plugin.Explorer/Search/QuickAccessLink/AccessLink.cs renamed to Plugins/Flow.Launcher.Plugin.Explorer/Search/QuickAccessLinks/AccessLink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Linq;
33
using System.Text.Json.Serialization;
44

5-
namespace Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink
5+
namespace Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks
66
{
77
public class AccessLink
88
{

Plugins/Flow.Launcher.Plugin.Explorer/Search/QuickAccessLink/QuickAccess.cs renamed to Plugins/Flow.Launcher.Plugin.Explorer/Search/QuickAccessLinks/QuickAccess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Linq;
44

5-
namespace Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink
5+
namespace Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks
66
{
77
public class QuickAccess
88
{

Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
2-
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink;
2+
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
33
using Flow.Launcher.Plugin.Explorer.Search.WindowsIndex;
44
using Flow.Launcher.Plugin.SharedCommands;
55
using System;

Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Flow.Launcher.Plugin.Explorer.Search;
2-
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink;
2+
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
33
using System.Collections.Generic;
44

55
namespace Flow.Launcher.Plugin.Explorer

Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Flow.Launcher.Core.Plugin;
22
using Flow.Launcher.Infrastructure.Storage;
33
using Flow.Launcher.Plugin.Explorer.Search;
4-
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink;
4+
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
55
using System.Diagnostics;
66
using System.Threading.Tasks;
77

Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLink;
1+
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
22
using Flow.Launcher.Plugin.Explorer.ViewModels;
33
using System;
44
using System.Collections.Generic;

0 commit comments

Comments
 (0)