@joebigelow / wix / commits / 45e58d75

Fix typo in SummaryInformationType.

Sean Hall committed Apr 13, 2020 at 10:16 UTC 45e58d750f54c0b7713bcb74792aef4bdb7197cb
1 file changed +3 -3
src/WixToolset.Data/Tuples/SummaryInformationTuple.cs
+3 -3
@@ -25,7 +25,7 @@ namespace WixToolset.Data.Tuples
25 Value,
26 }
27
28 - public enum SumaryInformationType
28 + public enum SummaryInformationType
29 {
30 Codepage = 1,
31 Title,
@@ -87,9 +87,9 @@ namespace WixToolset.Data.Tuples
87
88 public IntermediateField this[SummaryInformationTupleFields index] => this.Fields[(int)index];
89
90 - public SumaryInformationType PropertyId
90 + public SummaryInformationType PropertyId
91 {
92 - get => (SumaryInformationType)this.Fields[(int)SummaryInformationTupleFields.PropertyId].AsNumber();
92 + get => (SummaryInformationType)this.Fields[(int)SummaryInformationTupleFields.PropertyId].AsNumber();
93 set => this.Set((int)SummaryInformationTupleFields.PropertyId, (int)value);
94 }
95