Skip to content

Commit 3290e82

Browse files
committed
Fix default value in DOC comment
1 parent 639653a commit 3290e82

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

docs/data/classes/reference.tools.exportworkitemmappingtool.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ options:
4646
- parameterName: TargetFile
4747
type: String
4848
description: Path to file, where work item mapping will be saved.
49-
defaultValue: String.Empty
49+
defaultValue: ''
5050
isRequired: false
5151
dotNetType: System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
5252
status: missing XML code comments

docs/static/schema/configuration.schema.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1748,8 +1748,7 @@
17481748
},
17491749
"TargetFile": {
17501750
"description": "Path to file, where work item mapping will be saved.",
1751-
"type": "string",
1752-
"default": "String.Empty"
1751+
"type": "string"
17531752
}
17541753
}
17551754
},

docs/static/schema/schema.tools.exportworkitemmappingtool.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
},
1818
"TargetFile": {
1919
"description": "Path to file, where work item mapping will be saved.",
20-
"type": "string",
21-
"default": "String.Empty"
20+
"type": "string"
2221
}
2322
}
2423
}

src/MigrationTools/Tools/ExportWorkItemMappingToolOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class ExportWorkItemMappingToolOptions : ToolOptions
1010
/// <summary>
1111
/// Path to file, where work item mapping will be saved.
1212
/// </summary>
13-
/// <default>String.Empty</default>
13+
/// <default></default>
1414
public string TargetFile { get; set; } = string.Empty;
1515

1616
/// <summary>

0 commit comments

Comments
 (0)