Skip to content

Commit

Permalink
fix comma followed by whitespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
kilasuit committed Sep 5, 2024
1 parent 9d78cb4 commit 36d7cae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.WinGet.Client.Cmdlets.Cmdlets
/// Gets winget settings.
/// </summary>
[Cmdlet(VerbsCommon.Get, Constants.WinGetNouns.Setting)]
[Alias("gwgse","Get-WinGetSetting")]
[Alias("gwgse", "Get-WinGetSetting")]
public sealed class GetSettingCmdlet : PSCmdlet
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.WinGet.Client.Commands
/// settings with the input settings. Otherwise, overwrites the input settings.
/// </summary>
[Cmdlet(VerbsCommon.Set, Constants.WinGetNouns.UserSetting)]
[Alias("swgus","Set-WinGetUserSettings")]
[Alias("swgus", "Set-WinGetUserSettings")]
[OutputType(typeof(Hashtable))]
public sealed class SetUserSettingCmdlet : PSCmdlet
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.WinGet.Client.Commands
/// Compare the specified user settings with the winget user settings.
/// </summary>
[Cmdlet(VerbsDiagnostic.Test, Constants.WinGetNouns.UserSetting)]
[Alias("twgus","Test-WinGetUserSettings")]
[Alias("twgus", "Test-WinGetUserSettings")]
[OutputType(typeof(bool))]
public sealed class TestUserSettingCmdlet : PSCmdlet
{
Expand Down

0 comments on commit 36d7cae

Please sign in to comment.