From f28dbc9fddc896bd6aebf34ecf4ffca9fdfc5e4e Mon Sep 17 00:00:00 2001 From: pz87 Date: Mon, 19 Oct 2020 13:00:21 +0800 Subject: [PATCH] minor fix keyword typo in csharp comment. --- docs/cmdlet-example/visual-studio-simple-example.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cmdlet-example/visual-studio-simple-example.md b/docs/cmdlet-example/visual-studio-simple-example.md index 3d7144c82d3..f94cc912e34 100644 --- a/docs/cmdlet-example/visual-studio-simple-example.md +++ b/docs/cmdlet-example/visual-studio-simple-example.md @@ -45,7 +45,7 @@ Add another package source with name `powershell-core` and source `https://power [Parameter(Mandatory = true)] public string Name { get; set; } - // Overide the ProcessRecord method to process + // Override the ProcessRecord method to process // the supplied user name and write out a // greeting to the user by calling the WriteObject // method. @@ -107,7 +107,7 @@ It should find `PowerShellStandard.Library` package, select it and it will show [Parameter(Mandatory = true)] public string Name { get; set; } - // Overide the ProcessRecord method to process + // Override the ProcessRecord method to process // the supplied user name and write out a // greeting to the user by calling the WriteObject // method.