Skip to content

Commit d6375fc

Browse files
Fix formatting issues in required-development-guidelines.md (#13082)
The smallest of changes, only corrected 'a' to 'of' and removed a superfluous parenthesis end.
1 parent 6fe5222 commit d6375fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

reference/docs-conceptual/developer/cmdlet/required-development-guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ When you name cmdlets, do not use any of the following special characters.
9999

100100
### Parameters Names that cannot be Used (RD03)
101101

102-
Windows PowerShell provides a common set a parameters to all cmdlets plus additional parameters that are added in specific situations. When designing your own cmdlets you cannot use the following names: Confirm, Debug, ErrorAction, ErrorVariable, OutBuffer, OutVariable, WarningAction, WarningVariable, WhatIf, UseTransaction, and Verbose. For more information about these parameters, see [Common Parameter Names](./common-parameter-names.md).
102+
Windows PowerShell provides a common set of parameters to all cmdlets plus additional parameters that are added in specific situations. When designing your own cmdlets you cannot use the following names: Confirm, Debug, ErrorAction, ErrorVariable, OutBuffer, OutVariable, WarningAction, WarningVariable, WhatIf, UseTransaction, and Verbose. For more information about these parameters, see [Common Parameter Names](./common-parameter-names.md).
103103

104104
### Support Confirmation Requests (RD04)
105105

@@ -118,7 +118,7 @@ For more information about supporting these methods, see [Requesting Confirmatio
118118

119119
### Support Force Parameter for Interactive Sessions (RD05)
120120

121-
If your cmdlet is used interactively, always provide a Force parameter to override the interactive actions, such as prompts or reading lines of input). This is important because it allows your cmdlet to be used in non-interactive scripts and hosts. The following methods can be implemented by an interactive host.
121+
If your cmdlet is used interactively, always provide a Force parameter to override the interactive actions, such as prompts or reading lines of input. This is important because it allows your cmdlet to be used in non-interactive scripts and hosts. The following methods can be implemented by an interactive host.
122122

123123
- [System.Management.Automation.Host.PSHostUserInterface.Prompt*](/dotnet/api/System.Management.Automation.Host.PSHostUserInterface.Prompt)
124124

0 commit comments

Comments
 (0)