Remove space from Alias attribute

This commit is contained in:
dfinke
2018-09-20 12:12:53 -04:00
parent 4297d2ef82
commit bdefb45095
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
When given a valid URI, Set-ExcelColumn makes it a hyperlink. The column will be autosized to fit the links. When given a valid URI, Set-ExcelColumn makes it a hyperlink. The column will be autosized to fit the links.
#> #>
[cmdletbinding()] [cmdletbinding()]
[Alias(" Set-Column")] [Alias("Set-Column")]
[OutputType([OfficeOpenXml.ExcelColumn],[String])] [OutputType([OfficeOpenXml.ExcelColumn],[String])]
Param ( Param (
#If specifing the worksheet by name the ExcelPackage object which contains it needs to be passed #If specifing the worksheet by name the ExcelPackage object which contains it needs to be passed

View File

@@ -23,7 +23,7 @@
and given a double line border above and single line border below. and given a double line border above and single line border below.
#> #>
[cmdletbinding()] [cmdletbinding()]
[Alias(" Set-Row")] [Alias("Set-Row")]
[OutputType([OfficeOpenXml.ExcelRow],[String])] [OutputType([OfficeOpenXml.ExcelRow],[String])]
Param ( Param (
#An Excel package object - e.g. from Export-Excel -passthru - requires a sheet name #An Excel package object - e.g. from Export-Excel -passthru - requires a sheet name