Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cmdlet-example/visual-studio-simple-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down