build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / utils / CircularArray.ts
index 539688cc04f16fc93d46e086e1db240864b4e907..fb73ced97d3ccca0610158d049b2acc828693a67 100644 (file)
@@ -3,7 +3,7 @@
 const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024;
 
 /**
- * Array with a maximum length shifting items when full.
+ * Array with a maximum length and shifting items when full.
  */
 export class CircularArray<T> extends Array<T> {
   public size: number;