From a0dc228808e309b7cff1b18d616fb2674f7a74c9 Mon Sep 17 00:00:00 2001 From: jaluik Date: Sat, 29 Oct 2022 17:09:01 +0800 Subject: [PATCH] fix HookMap description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1377197..09b93e9 100644 --- a/README.md +++ b/README.md @@ -214,7 +214,7 @@ myCar.hooks.accelerate.tap({ A HookMap is a helper class for a Map with Hooks ``` js -const keyedHook = new HookMap(key => new SyncHook(["arg"])) +const keyedHook = new HookMap(key => new AsyncSeriesHook(["arg"])) ``` ``` js