Skip to content

Commit ef0e734

Browse files
committed
Fix second typo plus project files.
1 parent 911e336 commit ef0e734

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

RetailCoder.VBE/App.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
using System.Globalization;
1212
using System.Windows.Forms;
1313
using Rubberduck.Parsing.Inspections.Resources;
14+
using Rubberduck.Parsing.UIContext;
1415
using Rubberduck.UI.Command;
1516
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
1617
using Rubberduck.VersionCheck;

RetailCoder.VBE/Rubberduck.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,6 @@
639639
<Compile Include="UI\Command\MenuItems\RefactorIntroduceParameterCommandMenuItem.cs" />
640640
<Compile Include="UI\Command\MenuItems\RefactorMoveCloserToUsageCommandMenuItem.cs" />
641641
<Compile Include="UI\Command\MenuItems\RegexSearchReplaceCommandMenuItem.cs" />
642-
<Compile Include="UI\Command\MenuItems\UiDispatcher.cs" />
643642
<Compile Include="UI\Command\NavigateCommand.cs" />
644643
<Compile Include="UI\Command\SettingsCommand.cs" />
645644
<Compile Include="UI\Command\MenuItems\SettingsCommandMenuItem.cs" />

Rubberduck.Parsing/Rubberduck.Parsing.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175
<Compile Include="Symbols\ParsingExceptions\ParsePassSyntaxErrorInfo.cs" />
176176
<Compile Include="Symbols\ParsingExceptions\MainParseSyntaxErrorException.cs" />
177177
<Compile Include="Symbols\ParsingExceptions\PreprosessorSyntaxErrorException.cs" />
178+
<Compile Include="UIContext\UiDispatcher.cs" />
178179
<Compile Include="VBA\RepositoryProjectManager.cs" />
179180
<Compile Include="VBA\ParsePass.cs" />
180181
<Compile Include="Inspections\CannotAnnotateAttribute.cs" />

Rubberduck.Parsing/UIContext/UiDispatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static Task StartTask(Action action, TaskCreationOptions options = TaskCr
8484
/// <param name="func">The function that will be executed on the UI
8585
/// thread.</param>
8686
/// <param name="token">Optional cancellation token</param>
87-
/// <param name="options">Oprional TaskCreationOptions</param>
87+
/// <param name="options">Optional TaskCreationOptions</param>
8888
/// <returns></returns>
8989
public static Task<T> StartTask<T>(Func<T> func, CancellationToken token, TaskCreationOptions options = TaskCreationOptions.None)
9090
{

0 commit comments

Comments
 (0)