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:
30
30
$Passphrases,
31
31
$Passwordparam
32
32
)
33
- ...
33
+ ...
34
34
}
35
35
```
36
36
37
37
Correct:
38
38
39
39
```
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
+ }
60
60
61
61
```
You can’t perform that action at this time.
0 commit comments