From d0154fa10faa179858384720ac1c30e168c6fde5 Mon Sep 17 00:00:00 2001 From: Misha Malasai Date: Wed, 30 Aug 2023 23:31:34 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8618739..e82fcf6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The main difference between them is the moment when debouncing timeout starts. For `debounced()` timeout starts right after an execution of the action. It suits for cases without any lasting async work. -For `DebounceStateIdentity.debounce()` it is you who decides when to start a release timeout. +For `DebounceStateIdentity.debounce()` it is you who decide when to start a release timeout. It's a right choice for actions which perform lasting async work. > [!NOTE]