@joebigelow / wix / commits / 70354681

Fix typo in class name

Rob Mensching committed Jun 6, 2020 at 15:42 UTC 703546818ada54faa0bac33441370291b8e4bf6b
2 files changed +3 -3
src/WixToolset.Core.WindowsInstaller/Bind/AddBackSuppressedSequenceTablesCommand.cs renamed
+2 -2
@@ -12,9 +12,9 @@ namespace WixToolset.Core.WindowsInstaller.Bind
12 /// for the merge process to work. We'll drop the suppressed sequence tables again as
13 /// necessary.
14 /// </summary>
15 - internal class AddBackSuppresedSequenceTablesCommand
15 + internal class AddBackSuppressedSequenceTablesCommand
16 {
17 - public AddBackSuppresedSequenceTablesCommand(WindowsInstallerData output, TableDefinitionCollection tableDefinitions)
17 + public AddBackSuppressedSequenceTablesCommand(WindowsInstallerData output, TableDefinitionCollection tableDefinitions)
18 {
19 this.Output = output;
20 this.TableDefinitions = tableDefinitions;
src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+1 -1
@@ -354,7 +354,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
354 modularize.Execute();
355
356 // Ensure all sequence tables in place because, mergemod.dll requires them.
357 - var unsuppress = new AddBackSuppresedSequenceTablesCommand(output, tableDefinitions);
357 + var unsuppress = new AddBackSuppressedSequenceTablesCommand(output, tableDefinitions);
358 suppressedTableNames = unsuppress.Execute();
359 }
360 else if (output.Type == OutputType.Patch)