Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor gramatical edits #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ force the user to confirm the action before it is invoked.
## Validation and return values

The goal of this module is neither. As a toolbuilder you are responsible for validating user
input when they invoke the ScriptBlock assosiated with the Menu-Item. Any output from the ScriptBlock
input when they invoke the ScriptBlock associated with the Menu-Item. Any output from the ScriptBlock
will be written in the console. As you may know, a ScriptBlock may be a small script or a call to
a cmdlet with parameters. I would suggest that you stick to calling custom or built-in cmdlets and
design it using the best practice guides from Microsoft in regards to mandatory parameters etc.
Expand All @@ -59,7 +59,7 @@ design it using the best practice guides from Microsoft in regards to mandatory
## Show-Menu

This is the core cmdlet responsible for building the Menu and displaying it to the user. Executed
without parameters it will display the Main-Menu (remember you can only have one Main-Menu). Nevertheless
without parameters it will display the Main-Menu (remember you can only have one Main-Menu). Nevertheless,
you may also use it to display Sub-Menus by specifying the parameter MenuId which is the index of the
menu. Further you may also invoke a specific Menu-Item in a specific Menu by supplying InvokeItem and MenuId
parameters. If the Menu-Item is defined to confirm with the user before invocation, it will prompt the user
Expand Down