Skip to content

Commit 5694246

Browse files
author
Mohammed Bhatti
committed
Minor fixes to dictionary commands
1 parent e56e038 commit 5694246

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

taskt/Core/Automation/Commands/AddDictionaryCommand.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ namespace taskt.Core.Automation.Commands
1212
{
1313
[Serializable]
1414
[Attributes.ClassAttributes.Group("Dictionary Commands")]
15-
[Attributes.ClassAttributes.Description("This command created a DataTable with the column names provided")]
16-
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to create a new DataTable")]
15+
[Attributes.ClassAttributes.Description("This command Adds a key and value to a existing Dictionary")]
16+
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to add to a dictionary")]
1717
[Attributes.ClassAttributes.ImplementationDescription("")]
1818
public class AddDictionaryCommand : ScriptCommand
1919
{
2020
[XmlAttribute]
2121
[Attributes.PropertyAttributes.PropertyDescription("Please Indicate Dictionary Name")]
22-
[Attributes.PropertyAttributes.InputSpecification("Indicate a unique reference name for later use")]
22+
[Attributes.PropertyAttributes.InputSpecification("Indicate a Dictionary to add to")]
2323
[Attributes.PropertyAttributes.SampleUsage("vMyDictionary")]
2424
[Attributes.PropertyAttributes.Remarks("")]
2525
public string v_DictionaryName { get; set; }

taskt/Core/Automation/Commands/CreateDictionaryCommand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace taskt.Core.Automation.Commands
1313
[Serializable]
1414
[Attributes.ClassAttributes.Group("Dictionary Commands")]
1515
[Attributes.ClassAttributes.Description("This command created a DataTable with the column names provided")]
16-
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to create a new DataTable")]
16+
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to create a new Dictionary")]
1717
[Attributes.ClassAttributes.ImplementationDescription("")]
1818
public class CreateDictionaryCommand : ScriptCommand
1919
{

0 commit comments

Comments
 (0)