-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Open
Description
Type of issue
Typo in comment.
Feedback
Typo: "PSBoundParamters" should be "PSBoundParameters"
Description
A typo was found in a code comment within the Azure PowerShell repository.
The comment currently uses "PSBoundParamters", which is a misspelling.
The correct spelling should be "PSBoundParameters".
PSBoundParameters
is an important automatic variable in PowerShell:
- It exists within the context of a function and contains all explicitly passed parameters.
- It can be treated similarly to a hashtable, allowing key/value manipulation (e.g., removing keys or splatting to another function).
- Parameters with default values are not included unless explicitly provided by the caller.
Correcting this typo ensures technical accuracy and avoids confusion for contributors or readers referencing the code.
Affected Source
File: generated/Aks/Aks.Autorest/generated/runtime/Context.cs
Line 23:
Page URL
No response
Content source URL
No response
Author
No response
Document Id
No response
Platform Id
No response