Skip to content

Commit

Permalink
Add missing parameter aliases to align with caller/callee
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllath committed Oct 11, 2023
1 parent edf25cf commit b8a8f4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Public/ConvertFrom-ExcelData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ function ConvertFrom-ExcelData {
[ScriptBlock]$ScriptBlock,
[Alias("Sheet")]
$WorksheetName = 1,
[int]$HeaderRow = 1,
[Alias('HeaderRow', 'TopRow')]
[int]$StartRow = 1,
[string[]]$Header,
[switch]$NoHeader,
[switch]$DataOnly
Expand Down

0 comments on commit b8a8f4c

Please sign in to comment.