diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Identifier.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Identifier.cs b/src/WixToolset.Data/Identifier.cs index 9bbf35f0..57241007 100644 --- a/src/WixToolset.Data/Identifier.cs +++ b/src/WixToolset.Data/Identifier.cs | |||
@@ -7,7 +7,7 @@ namespace WixToolset.Data | |||
7 | using SimpleJson; | 7 | using SimpleJson; |
8 | 8 | ||
9 | /// <summary> | 9 | /// <summary> |
10 | /// Class to define the identifier and access for a tuple. | 10 | /// Class to define the identifier and access for a symbol. |
11 | /// </summary> | 11 | /// </summary> |
12 | [DebuggerDisplay("{Access} {Id,nq}")] | 12 | [DebuggerDisplay("{Access} {Id,nq}")] |
13 | public class Identifier | 13 | public class Identifier |
@@ -46,12 +46,12 @@ namespace WixToolset.Data | |||
46 | } | 46 | } |
47 | 47 | ||
48 | /// <summary> | 48 | /// <summary> |
49 | /// Access modifier for a tuple. | 49 | /// Access modifier for a symbol. |
50 | /// </summary> | 50 | /// </summary> |
51 | public AccessModifier Access { get; } | 51 | public AccessModifier Access { get; } |
52 | 52 | ||
53 | /// <summary> | 53 | /// <summary> |
54 | /// Identifier for the tuple. | 54 | /// Identifier for the symbol. |
55 | /// </summary> | 55 | /// </summary> |
56 | public string Id { get; } | 56 | public string Id { get; } |
57 | 57 | ||