From 50905c7989d6cf43c1486c06f20cf42faf4087b2 Mon Sep 17 00:00:00 2001 From: dbaileyut <7095040+dbaileyut@users.noreply.github.com> Date: Fri, 5 Oct 2018 16:04:19 -0500 Subject: [PATCH] * Fix typo in Import-Excel help description --- ImportExcel.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ImportExcel.psm1 b/ImportExcel.psm1 index 107b8ec..a2c9821 100644 --- a/ImportExcel.psm1 +++ b/ImportExcel.psm1 @@ -63,7 +63,7 @@ function Import-Excel { .DESCRIPTION The Import-Excel cmdlet creates custom objects from the rows in an Excel worksheet. Each row represents one object. All of this is possible without installing Microsoft Excel and by using the .NET library ‘EPPLus.dll’. - By default, the property names of the objects are retrieved from the column headers. Because an object cannot have a blanc property name, only columns with column headers will be imported. + By default, the property names of the objects are retrieved from the column headers. Because an object cannot have a blank property name, only columns with column headers will be imported. If the default behavior is not desired and you want to import the complete worksheet ‘as is’, the parameter ‘-NoHeader’ can be used. In case you want to provide your own property names, you can use the parameter ‘-HeaderName’.