From 250d713c7821dcd603229bc74ba073a4b5cd541a Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 21 Dec 2023 18:46:09 +0100 Subject: [PATCH] Fix typo on debounce operator impl --- src/beicon/v2/ops.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beicon/v2/ops.cljs b/src/beicon/v2/ops.cljs index 55055f1..75f8be5 100644 --- a/src/beicon/v2/ops.cljs +++ b/src/beicon/v2/ops.cljs @@ -218,7 +218,7 @@ "Emits an item from the source Observable after a particular timespan has passed without the Observable omitting any other items." - rx/debunceTime) + rx/debounceTime) (def ^function sample "Samples the observable sequence at each interval."