From 7f6f61dd69c3a2f45abfbbe9103ae913b6d83f9a Mon Sep 17 00:00:00 2001 From: shuta13 Date: Sat, 19 Oct 2024 03:11:09 +0900 Subject: [PATCH] fix: typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 54f07a77b..a5371698f 100644 --- a/README.md +++ b/README.md @@ -2637,7 +2637,7 @@ import throttle from 'just-throttle'; // no matter how many times the function is called, only invoke once within the given interval // options: // `leading`: invoke before interval -// `trailing`: invoke afer interval +// `trailing`: invoke after interval const fn1 = throttle(() => console.log('hello'), 500, {leading: true}); setInterval(fn1, 400);