Skip to content

Commit 97c120d

Browse files
committed
Fix parameter alias
1 parent bd8ea16 commit 97c120d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PSCompatibilityCollector/Microsoft.PowerShell.CrossCompatibility/Commands/ConvertJsonCommands.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class ConvertToPSCompatibilityJsonCommand : PSCmdlet
3030
/// If set, do not include whitespace like indentation or newlines in the output JSON.
3131
/// </summary>
3232
[Parameter]
33-
[Alias(new [] { "Compress" })]
33+
[Alias("Compress")]
3434
public SwitchParameter NoWhitespace { get; set; }
3535

3636
protected override void BeginProcessing()

0 commit comments

Comments
 (0)