Skip to content

Commit 72533af

Browse files
authored
Fix Typo in 'Remove-cmdlet-example.md' (#12774)
1 parent 65e7a43 commit 72533af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/development-docs/examples/remove-cmdlet-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ namespace Microsoft.Azure.Commands.Service
168168
if (this.ShouldProcess(this.Name, string.Format("Deleting ChildResource '{0}' in resource group '{1}' under parent TopLevelResource '{2}'.", this.Name, this.ResourceGroupName, this.TopLevelResourceName)))
169169
{
170170
this.MySDKClient.ChildResource.Delete(this.ResourceGroupName, this.TopLevelResourceName, this.Name);
171-
if (this.IsPassThru.IsPresent)
171+
if (this.PassThru.IsPresent)
172172
{
173173
WriteObject(true);
174174
}

0 commit comments

Comments
 (0)