diff --git a/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/GetSettingCmdlet.cs b/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/GetSettingCmdlet.cs index fb1c94a93e..6f0333990f 100644 --- a/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/GetSettingCmdlet.cs +++ b/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/GetSettingCmdlet.cs @@ -14,7 +14,7 @@ namespace Microsoft.WinGet.Client.Cmdlets.Cmdlets /// Gets winget settings. /// [Cmdlet(VerbsCommon.Get, Constants.WinGetNouns.Setting)] - [Alias("gwgse","Get-WinGetSetting")] + [Alias("gwgse", "Get-WinGetSetting")] public sealed class GetSettingCmdlet : PSCmdlet { /// diff --git a/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/SetUserSettingCmdlet.cs b/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/SetUserSettingCmdlet.cs index bee63e0cea..12a0764dff 100644 --- a/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/SetUserSettingCmdlet.cs +++ b/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/SetUserSettingCmdlet.cs @@ -16,7 +16,7 @@ namespace Microsoft.WinGet.Client.Commands /// settings with the input settings. Otherwise, overwrites the input settings. /// [Cmdlet(VerbsCommon.Set, Constants.WinGetNouns.UserSetting)] - [Alias("swgus","Set-WinGetUserSettings")] + [Alias("swgus", "Set-WinGetUserSettings")] [OutputType(typeof(Hashtable))] public sealed class SetUserSettingCmdlet : PSCmdlet { diff --git a/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/TestUserSettingCmdlet.cs b/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/TestUserSettingCmdlet.cs index 1bd115ca65..8a9bf4910f 100644 --- a/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/TestUserSettingCmdlet.cs +++ b/src/PowerShell/Microsoft.WinGet.Client.Cmdlets/Cmdlets/TestUserSettingCmdlet.cs @@ -15,7 +15,7 @@ namespace Microsoft.WinGet.Client.Commands /// Compare the specified user settings with the winget user settings. /// [Cmdlet(VerbsDiagnostic.Test, Constants.WinGetNouns.UserSetting)] - [Alias("twgus","Test-WinGetUserSettings")] + [Alias("twgus", "Test-WinGetUserSettings")] [OutputType(typeof(bool))] public sealed class TestUserSettingCmdlet : PSCmdlet {