Skip to content

Commit 54af2cd

Browse files
committed
docs: amend priority queue constructor comment
Signed-off-by: Jérôme Benoit <[email protected]>
1 parent c4ec62b commit 54af2cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/queues/fixed-priority-queue.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ export class FixedPriorityQueue<T> extends AbstractFixedQueue<T>
1515
/**
1616
* Constructs a FixedPriorityQueue.
1717
* @param size - Fixed queue size. @defaultValue defaultQueueSize
18-
* @param agingFactor - Aging factor to apply to items in priority points per millisecond. A higher value makes items age faster.
18+
* @param agingFactor - Aging factor to apply to items (priority points per millisecond).
19+
* @param loadExponent - Load exponent applied to normalized load when computing effective aging.
1920
* @returns IFixedQueue.
2021
*/
2122
public constructor(

0 commit comments

Comments
 (0)