X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ffixed-priority-queue.ts;h=fadaee750515b3de72bcc6c5a9f6cd70de0b68cd;hb=f45a8925025d4b76849ea359542bb6bafd39695d;hp=075986e26b09acbd5b30f1d3247725f6ccc52588;hpb=eadb37e247acfa716cad2a1e211c947513c251bf;p=poolifier.git diff --git a/src/fixed-priority-queue.ts b/src/fixed-priority-queue.ts index 075986e2..fadaee75 100644 --- a/src/fixed-priority-queue.ts +++ b/src/fixed-priority-queue.ts @@ -130,7 +130,7 @@ export class FixedPriorityQueue { private checkSize (size: number): void { if (!Number.isSafeInteger(size)) { throw new TypeError( - `Invalid fixed priority queue size: ${size} is not an integer` + `Invalid fixed priority queue size: '${size}' is not an integer` ) } if (size < 0) {