From 13fd6610d0a8d472eaebd0b9eb5970a9125ffd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Roucheray?= Date: Thu, 8 Jun 2017 15:16:41 +0200 Subject: [PATCH] Fix typo s/omitting/emitting --- doc/api/core/operators/debounce.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/core/operators/debounce.md b/doc/api/core/operators/debounce.md index ca1636c97..7ec11318b 100644 --- a/doc/api/core/operators/debounce.md +++ b/doc/api/core/operators/debounce.md @@ -2,7 +2,7 @@ ### `Rx.Observable.prototype.debounce(durationSelector)` ### [Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/debounce.js "View in source") -Emits an item from the source Observable after a particular timespan has passed without the Observable omitting any other items. +Emits an item from the source Observable after a particular timespan has passed without the Observable emitting any other items. --OR--