File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/System.Management.Automation/FormatAndOutput/common Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -528,15 +528,15 @@ public string Executable
528
528
public class AnsiDictionary : Dictionary < string , string >
529
529
{
530
530
/// <summary>
531
- /// Constructor for AnsiDictionary.
531
+ /// Initializes a new instance of the <see cref=" AnsiDictionary"/> class .
532
532
/// </summary>
533
- public AnsiDictionary ( ) : base ( StringComparer . OrdinalIgnoreCase ) { }
533
+ public AnsiDictionary ( ) : base ( StringComparer . OrdinalIgnoreCase ) { }
534
534
535
535
/// <summary>
536
536
/// Addnew entry to dictionary.
537
537
/// </summary>
538
- /// <param name="key">Key to add</param>
539
- /// <param name="value">ANSI string value to add</param>
538
+ /// <param name="key">Key to add. </param>
539
+ /// <param name="value">ANSI string value to add. </param>
540
540
public new void Add ( string key , string value )
541
541
{
542
542
base . Add ( key , ValidateNoContent ( value ) ) ;
You can’t perform that action at this time.
0 commit comments