Skip to content

Commit db53c85

Browse files
committed
Minor typo fixes.
1 parent c9a2311 commit db53c85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation/Classification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace DataWarehouseAutomation
88
public class Classification
99
{
1010
/// <summary>
11-
/// Optional identifier for the classification
11+
/// Optional identifier for the classification.
1212
/// </summary>
1313
[JsonProperty("id", NullValueHandling = NullValueHandling.Ignore, DefaultValueHandling = DefaultValueHandling.Ignore)]
1414
public int id { get; set; }

ClassLibrary/DataWarehouseAutomation/DataWarehouseAutomation/DataItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class DataItem
1111
public string name { get; set; } // Mandatory
1212

1313
/// <summary>
14-
/// The target object of the mapping.
14+
/// The data object to which the data item belongs. This can be used to construct fully qualified names.
1515
/// </summary>
1616
[JsonProperty("dataObject", NullValueHandling = NullValueHandling.Ignore, DefaultValueHandling = DefaultValueHandling.Ignore)]
1717
public DataObject dataObject { get; set; }

0 commit comments

Comments
 (0)