From 33d6b51b3a71dbda571498b70279e23a0fa79bb8 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Fri, 26 Mar 2021 09:20:39 +0100 Subject: [PATCH] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fba63ba..3442eb2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Abortable promises ⚡ -A module for node that lets you run complex sequence of async functions and: +A module for node that lets you run complex sequence of async steps and: 1. Use an external signal to stop the sequence of steps @@ -21,7 +21,7 @@ const a = new AbortablePromise(async function* () { setTimeout(() => a.abort(), 1500); // doesn't get to sleep(3000) ``` -2. Use an external signal to kill an already started asynchronous step +2. Use an external signal to kill an _already started_ asynchronous step ```typescript const b = new AbortablePromise(async function* (await_or_abort) {