style(Manifest): add parameter comments

This commit is contained in:
Rodweil, Theodor 2023-08-06 04:19:36 +02:00
parent b0c96a4c45
commit 8b780e40bb
No known key found for this signature in database
GPG key ID: F8BC1B0EB1F9CCF5

View file

@ -193,10 +193,13 @@ function Optimize-PagesManifest
this. this.
#> #>
Param( Param(
# Manifest to sort
[Parameter(Mandatory)] [Array] $Manifest, [Parameter(Mandatory)] [Array] $Manifest,
# Left partition border
[Parameter(Mandatory)] [Int] $Lo, [Parameter(Mandatory)] [Int] $Lo,
# Right partition border
[Parameter(Mandatory)] [Int] $Hi, [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 [Parameter(Mandatory)] [Collections.Hashtable] $GenerationCache
) )