docs: improve code documentation
[poolifier.git] / src / queue.ts
index e7c9dd11fc0332ccbba845e9bd663d4bc682c523..ead4b6375388398483eda10abaaae50e2c779928 100644 (file)
@@ -51,7 +51,7 @@ export class Queue<T> {
   }
 
   /**
-   * Peek at the first item.
+   * Peeks at the first item.
    *
    * @returns The first item or `undefined` if the queue is empty.
    */
@@ -63,7 +63,7 @@ export class Queue<T> {
   }
 
   /**
-   * Clear the queue.
+   * Clears the queue.
    */
   public clear (): void {
     this.items = []