From 8b780e40bbdaa5c94dcd00b029909eab0105e33f Mon Sep 17 00:00:00 2001 From: "Rodweil, Theodor" Date: Sun, 6 Aug 2023 04:19:36 +0200 Subject: [PATCH] style(Manifest): add parameter comments --- PSConfluencePublisher/Manifest.psm1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PSConfluencePublisher/Manifest.psm1 b/PSConfluencePublisher/Manifest.psm1 index d285b51..e331ec5 100755 --- a/PSConfluencePublisher/Manifest.psm1 +++ b/PSConfluencePublisher/Manifest.psm1 @@ -193,10 +193,13 @@ function Optimize-PagesManifest this. #> Param( + # Manifest to sort [Parameter(Mandatory)] [Array] $Manifest, + # Left partition border [Parameter(Mandatory)] [Int] $Lo, + # Right partition border [Parameter(Mandatory)] [Int] $Hi, - # cache for storing the numeric ancestral generation of pages + # Cache for storing the numeric ancestral generation of pages [Parameter(Mandatory)] [Collections.Hashtable] $GenerationCache )