File tree Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -30,32 +30,32 @@ Wrong:
3030 $Passphrases,
3131 $Passwordparam
3232 )
33- ...
33+ ...
3434 }
3535```
3636
3737Correct:
3838
3939```
40- function Test-Script
41- {
42- [CmdletBinding()]
43- [Alias()]
44- [OutputType([Int])]
45- Param
46- (
47- [SecureString]
48- $Password,
49- [System.Security.SecureString]
50- $Pass,
51- [SecureString[]]
52- $Passwords,
53- [SecureString]
54- $Passphrases,
55- [SecureString]
56- $PasswordParam
57- )
58- ...
59- }
40+ function Test-Script
41+ {
42+ [CmdletBinding()]
43+ [Alias()]
44+ [OutputType([Int])]
45+ Param
46+ (
47+ [SecureString]
48+ $Password,
49+ [System.Security.SecureString]
50+ $Pass,
51+ [SecureString[]]
52+ $Passwords,
53+ [SecureString]
54+ $Passphrases,
55+ [SecureString]
56+ $PasswordParam
57+ )
58+ ...
59+ }
6060
6161```
You can’t perform that action at this time.
0 commit comments