From af281ece4194f9e53ae54ac86248aaca2ff43eda Mon Sep 17 00:00:00 2001 From: Jaap Brasser Date: Mon, 8 Jul 2019 23:12:35 +0200 Subject: [PATCH] Updated to comment based help --- ConvertTo-DateObject/ConvertTo-DateObject.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ConvertTo-DateObject/ConvertTo-DateObject.ps1 b/ConvertTo-DateObject/ConvertTo-DateObject.ps1 index c4f86f8..3cff6bf 100644 --- a/ConvertTo-DateObject/ConvertTo-DateObject.ps1 +++ b/ConvertTo-DateObject/ConvertTo-DateObject.ps1 @@ -1,6 +1,9 @@ #region Functions -# Function to convert the query provided in -ExcludeDate to a format that can be parsed by the ConvertTo-DateObject function function ConvertFrom-DateQuery { +<# +.SYNOPSIS +Function to convert the query provided in -ExcludeDate to a format that can be parsed by the ConvertTo-DateObject function +#> param ( [Parameter(Mandatory=$true, ValueFromPipeline @@ -494,4 +497,4 @@ Will list 10 dates, starting at the 5th of May 2010 continuing up until the 14th 'LimitYear,2008' Will place the limit of LimitYear to 2008, the default value of this parameter is 2010. -#> \ No newline at end of file +#>