From 7d58705e9aa00b139f799cedd497c320b839e7b4 Mon Sep 17 00:00:00 2001 From: Akiomi Kamakura Date: Mon, 8 Jan 2024 17:05:04 +0900 Subject: [PATCH] Fix typo --- pool.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.test.ts b/pool.test.ts index bc00e96..4b19e90 100644 --- a/pool.test.ts +++ b/pool.test.ts @@ -19,7 +19,7 @@ test('removing duplicates when subscribing', async () => { pool.subscribeMany(relays, [{ authors: [pub] }], { onevent(event: Event) { // this should be called only once even though we're listening - // to multiple relays because the events will be catched and + // to multiple relays because the events will be caught and // deduplicated efficiently (without even being parsed) received.push(event) },