From: Jérôme Benoit Date: Sun, 23 Apr 2023 00:33:27 +0000 (+0200) Subject: docs: fix tag case X-Git-Tag: v2.4.11~5 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=4888bc9c988c5a0782ed642dc184c67207c767aa;p=poolifier.git docs: fix tag case Signed-off-by: Jérôme Benoit --- diff --git a/src/circular-array.ts b/src/circular-array.ts index 654abb65..40bd19ae 100644 --- a/src/circular-array.ts +++ b/src/circular-array.ts @@ -17,7 +17,7 @@ export class CircularArray extends Array { } } - /** @inheritdoc */ + /** @inheritDoc */ public push (...items: T[]): number { const length = super.push(...items) if (length > this.size) { @@ -26,7 +26,7 @@ export class CircularArray extends Array { return this.length } - /** @inheritdoc */ + /** @inheritDoc */ public unshift (...items: T[]): number { const length = super.unshift(...items) if (length > this.size) { @@ -35,7 +35,7 @@ export class CircularArray extends Array { return this.length } - /** @inheritdoc */ + /** @inheritDoc */ public concat (...items: Array>): CircularArray { const concatenatedCircularArray = super.concat( items as T[] @@ -50,7 +50,7 @@ export class CircularArray extends Array { return concatenatedCircularArray } - /** @inheritdoc */ + /** @inheritDoc */ public splice (start: number, deleteCount?: number, ...items: T[]): T[] { let itemsRemoved: T[] if (arguments.length >= 3 && deleteCount !== undefined) {