diff --git a/documentation/development-docs/examples/remove-cmdlet-example.md b/documentation/development-docs/examples/remove-cmdlet-example.md index 0450d480b490..d5358d533245 100644 --- a/documentation/development-docs/examples/remove-cmdlet-example.md +++ b/documentation/development-docs/examples/remove-cmdlet-example.md @@ -168,7 +168,7 @@ namespace Microsoft.Azure.Commands.Service if (this.ShouldProcess(this.Name, string.Format("Deleting ChildResource '{0}' in resource group '{1}' under parent TopLevelResource '{2}'.", this.Name, this.ResourceGroupName, this.TopLevelResourceName))) { this.MySDKClient.ChildResource.Delete(this.ResourceGroupName, this.TopLevelResourceName, this.Name); - if (this.IsPassThru.IsPresent) + if (this.PassThru.IsPresent) { WriteObject(true); }