diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/ITupleDefinitionCreator.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/ITupleDefinitionCreator.cs b/src/WixToolset.Data/ITupleDefinitionCreator.cs index 7d818be1..93b10ce8 100644 --- a/src/WixToolset.Data/ITupleDefinitionCreator.cs +++ b/src/WixToolset.Data/ITupleDefinitionCreator.cs | |||
@@ -2,10 +2,10 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Data | 3 | namespace WixToolset.Data |
4 | { | 4 | { |
5 | public interface ITupleDefinitionCreator | 5 | public interface ISymbolDefinitionCreator |
6 | { | 6 | { |
7 | void AddCustomTupleDefinition(IntermediateTupleDefinition definition); | 7 | void AddCustomSymbolDefinition(IntermediateSymbolDefinition definition); |
8 | 8 | ||
9 | bool TryGetTupleDefinitionByName(string name, out IntermediateTupleDefinition tupleDefinition); | 9 | bool TryGetSymbolDefinitionByName(string name, out IntermediateSymbolDefinition symbolDefinition); |
10 | } | 10 | } |
11 | } | 11 | } |