You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid using reserved words as function names. Using reserved words as function
14
-
names can cause errors or unexpected behavior in scripts.
13
+
Avoid using reserved words as function names. Using reserved words as function names can cause
14
+
errors or unexpected behavior in scripts.
15
15
16
16
## How to Fix
17
17
18
-
Avoid using any of the reserved words as function names. Instead, choose a
19
-
different name that is not reserved.
18
+
Avoid using any of the reserved words as function names. Choose a different name that's not a
19
+
reserved word.
20
20
21
-
See [`about_Reserved_Words`](https://learn.microsoft.com/en-gb/powershell/module/microsoft.powershell.core/about/about_reserved_words) for a list of reserved
22
-
words in PowerShell.
21
+
See [about_Reserved_Words][01] for a list of reserved words in PowerShell.
0 commit comments