chore: generate documentation
[poolifier.git] / src / circular-array.ts
index 8adf4b5fb6ec2a49b3d2e0e3e0d6fe4e6237c5a7..2ffee18e3a14652e1203a9af1f215a885917dbd4 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