From 979e2251853435eb4c98d9452bbf787a16aa0266 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 4 Apr 2023 23:57:55 +0200 Subject: [PATCH] docs: fix code example MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- examples/multiFunctionExample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/multiFunctionExample.js b/examples/multiFunctionExample.js index 6edc2bb7..31fd8809 100644 --- a/examples/multiFunctionExample.js +++ b/examples/multiFunctionExample.js @@ -13,4 +13,4 @@ pool .then(res => console.log(res)) .catch(err => console.error(err)) -setTimeout(pool.destroy(pool), 3000) +setTimeout(pool.destroy(), 3000) -- 2.34.1