docs: fix tag case
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 23 Apr 2023 00:33:27 +0000 (02:33 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 23 Apr 2023 00:33:27 +0000 (02:33 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/circular-array.ts

index 654abb656da74bac380372cb39341aa9f2f831c5..40bd19ae0fc74742380979fe05712a5e962251c6 100644 (file)
@@ -17,7 +17,7 @@ export class CircularArray<T> extends Array<T> {
     }
   }
 
-  /** @inheritdoc */
+  /** @inheritDoc */
   public push (...items: T[]): number {
     const length = super.push(...items)
     if (length > this.size) {
@@ -26,7 +26,7 @@ export class CircularArray<T> extends Array<T> {
     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<T> extends Array<T> {
     return this.length
   }
 
-  /** @inheritdoc */
+  /** @inheritDoc */
   public concat (...items: Array<T | ConcatArray<T>>): CircularArray<T> {
     const concatenatedCircularArray = super.concat(
       items as T[]
@@ -50,7 +50,7 @@ export class CircularArray<T> extends Array<T> {
     return concatenatedCircularArray
   }
 
-  /** @inheritdoc */
+  /** @inheritDoc */
   public splice (start: number, deleteCount?: number, ...items: T[]): T[] {
     let itemsRemoved: T[]
     if (arguments.length >= 3 && deleteCount !== undefined) {