From c79dc09f1e58ad96e18b39bc5103b9ee6b414147 Mon Sep 17 00:00:00 2001 From: CRIMX Date: Tue, 30 Apr 2024 11:53:21 +0800 Subject: [PATCH] chore: wording --- src/async-seq.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/async-seq.ts b/src/async-seq.ts index 677372e..55aedbb 100644 --- a/src/async-seq.ts +++ b/src/async-seq.ts @@ -17,8 +17,8 @@ export interface AsyncSeqOptions { */ window?: number; /** - * New tasks are added to the sequence tail. By default they are dropped if the sequence is full. - * Set this to `true` to drop old tasks from sequence head instead. + * New pending tasks are added to the sequence tail. By default they are dropped if the sequence is full. + * Set this to `true` to drop old pending tasks from sequence head instead. */ dropHead?: boolean; }