aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-13 10:16:48 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-13 20:28:02 +1000
commit45e58d750f54c0b7713bcb74792aef4bdb7197cb (patch)
tree6a2fe6a6e4f7851116e778fd33232b481dface9f /src
parent1b46a79f04302fdbb5b5129ecbf4563a95e9843d (diff)
downloadwix-45e58d750f54c0b7713bcb74792aef4bdb7197cb.tar.gz
wix-45e58d750f54c0b7713bcb74792aef4bdb7197cb.tar.bz2
wix-45e58d750f54c0b7713bcb74792aef4bdb7197cb.zip
Fix typo in SummaryInformationType.
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Data/Tuples/SummaryInformationTuple.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/SummaryInformationTuple.cs b/src/WixToolset.Data/Tuples/SummaryInformationTuple.cs
index 074c2bb1..d395d115 100644
--- a/src/WixToolset.Data/Tuples/SummaryInformationTuple.cs
+++ b/src/WixToolset.Data/Tuples/SummaryInformationTuple.cs
@@ -25,7 +25,7 @@ namespace WixToolset.Data.Tuples
25 Value, 25 Value,
26 } 26 }
27 27
28 public enum SumaryInformationType 28 public enum SummaryInformationType
29 { 29 {
30 Codepage = 1, 30 Codepage = 1,
31 Title, 31 Title,
@@ -87,9 +87,9 @@ namespace WixToolset.Data.Tuples
87 87
88 public IntermediateField this[SummaryInformationTupleFields index] => this.Fields[(int)index]; 88 public IntermediateField this[SummaryInformationTupleFields index] => this.Fields[(int)index];
89 89
90 public SumaryInformationType PropertyId 90 public SummaryInformationType PropertyId
91 { 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); 93 set => this.Set((int)SummaryInformationTupleFields.PropertyId, (int)value);
94 } 94 }
95 95