From 7cb26a3475524b33453213dd83cabbf53d42a1dd Mon Sep 17 00:00:00 2001 From: Beisi Zhou Date: Wed, 26 Aug 2020 15:35:08 +0800 Subject: [PATCH] Fix Typo in 'Remove-cmdlet-example.md' --- .../development-docs/examples/remove-cmdlet-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }