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 +#>