Skip to content

Commit e58eab1

Browse files
committed
Fix a typo error.
1 parent 5737402 commit e58eab1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Resources/Tags/Client/TagsClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public PSTagResource CreateOrUpdateTagAtScope(string scope, IDictionary<string,
155155
/// <param name="operation"></param>
156156
/// <param name="parameters"></param>
157157
/// <returns></returns>
158-
public PSTagResource UpdateTagAtScope(string scope, TagPatchOpeation operation, IDictionary<string, string> parameters)
158+
public PSTagResource UpdateTagAtScope(string scope, TagPatchOperation operation, IDictionary<string, string> parameters)
159159
{
160160
var tagPatchResource = new TagsPatchResource(operation: operation.ToString(), properties: new SDKTagsObject(parameters));
161161
return ResourceManagementClient.Tags.UpdateAtScope(scope: scope, parameters: tagPatchResource)?.ToPSTagResource();

src/Resources/Tags/Model/TagPatchOpeation.cs renamed to src/Resources/Tags/Model/TagPatchOperation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Microsoft.Azure.Commands.Tags.Model
66
{
7-
public enum TagPatchOpeation
7+
public enum TagPatchOperation
88
{
99
Merge,
1010
Replace,

src/Resources/Tags/Tag/UpdateAzureTagCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class UpdateAzureTagCommand : TagBaseCmdlet
5858
ParameterSetName = UpdateByResourceIdParameterSet,
5959
HelpMessage = "The update operation. Options are Merge, Replace and Delete.")]
6060
[ValidateNotNullOrEmpty]
61-
public TagPatchOpeation Operation { get; set; }
61+
public TagPatchOperation Operation { get; set; }
6262

6363
#endregion
6464

0 commit comments

Comments
 (0)