Skip to content

Commit

Permalink
remove s from class name and headers
Browse files Browse the repository at this point in the history
  • Loading branch information
kilasuit committed Aug 27, 2024
1 parent 1896003 commit 696bab0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -----------------------------------------------------------------------------
// <copyright file="GetSettingsCmdlet.cs" company="Microsoft Corporation">
// <copyright file="GetSettingCmdlet.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------------
Expand All @@ -15,7 +15,7 @@ namespace Microsoft.WinGet.Client.Cmdlets.Cmdlets
/// </summary>
[Cmdlet(VerbsCommon.Get, Constants.WinGetNouns.Setting)]
[Alias("gwgse","Get-WinGetSetting")]
public sealed class GetSettingsCmdlet : PSCmdlet
public sealed class GetSettingCmdlet : PSCmdlet
{
/// <summary>
/// Gets or sets a value indicating whether to output a string or a hashtable.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -----------------------------------------------------------------------------
// <copyright file="GetUserSettingsCmdlet.cs" company="Microsoft Corporation">
// <copyright file="GetUserSettingCmdlet.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------------
Expand All @@ -17,7 +17,7 @@ namespace Microsoft.WinGet.Client.Commands
[Cmdlet(VerbsCommon.Get, Constants.WinGetNouns.UserSetting)]
[Alias("gwgus", "Get-WinGetUserSettings")]
[OutputType(typeof(Hashtable))]
public sealed class GetUserSettingsCmdlet : PSCmdlet
public sealed class GetUserSettingCmdlet : PSCmdlet
{
/// <summary>
/// Gets the settings file contents.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -----------------------------------------------------------------------------
// <copyright file="SetUserSettingsCmdlet.cs" company="Microsoft Corporation">
// <copyright file="SetUserSettingCmdlet.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------------
Expand All @@ -18,7 +18,7 @@ namespace Microsoft.WinGet.Client.Commands
[Cmdlet(VerbsCommon.Set, Constants.WinGetNouns.UserSetting)]
[Alias("swgus","Set-WinGetUserSettings")]
[OutputType(typeof(Hashtable))]
public sealed class SetUserSettingsCmdlet : PSCmdlet
public sealed class SetUserSettingCmdlet : PSCmdlet
{
/// <summary>
/// Gets or sets the input user settings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -----------------------------------------------------------------------------
// <copyright file="TestUserSettingsCmdlet.cs" company="Microsoft Corporation">
// <copyright file="TestUserSettingCmdlet.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------------
Expand All @@ -17,7 +17,7 @@ namespace Microsoft.WinGet.Client.Commands
[Cmdlet(VerbsDiagnostic.Test, Constants.WinGetNouns.UserSetting)]
[Alias("twgus","Test-WinGetUserSettings")]
[OutputType(typeof(bool))]
public sealed class TestUserSettingsCmdlet : PSCmdlet
public sealed class TestUserSettingCmdlet : PSCmdlet
{
/// <summary>
/// Gets or sets the input user settings.
Expand Down

0 comments on commit 696bab0

Please sign in to comment.