From 4888bc9c988c5a0782ed642dc184c67207c767aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 23 Apr 2023 02:33:27 +0200 Subject: [PATCH] docs: fix tag case MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/circular-array.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) { -- 2.34.1