8000 fix codefactor · PowerShell/PowerShell@5a5c0ee · GitHub
[go: up one dir, main page]

Skip to content < 8000 span style="width: 0%;" data-view-component="true" class="Progress-item progress-pjax-loader-bar left-0 top-0 color-bg-accent-emphasis">

Commit 5a5c0ee

Browse files
committed
fix codefactor
1 parent 5518541 commit 5a5c0ee

File tree

1 file changed

+4
-4
lines changed
  • src/System.Management.Automation/FormatAndOutput/common

1 file changed

+4
-4
lines changed

src/System.Management.Automation/FormatAndOutput/common/PSStyle.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -528,15 +528,15 @@ public string Executable
528528
public class AnsiDictionary : Dictionary<string, string>
529529
{
530530
/// <summary>
531-
/// Constructor for AnsiDictionary.
531+
/// Initializes a new instance of the <see cref="AnsiDictionary"/> class.
532532
/// </summary>
533-
public AnsiDictionary() : base(StringComparer.OrdinalIgnoreCase){}
533+
public AnsiDictionary() : base(StringComparer.OrdinalIgnoreCase) { }
534534

535535
/// <summary>
536536
/// Addnew entry to dictionary.
537537
/// </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>
540540
public new void Add(string key, string value)
541541
{
542542
base.Add(key, ValidateNoContent(value));

0 commit comments

Comments
 (0)
0