Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 0634b0d

Browse files
Merge pull request #504 from 38elements/master
Fix Document for timeoutWithSelector
2 parents 36acb83 + a68eb09 commit 0634b0d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

doc/api/core/operators/timeoutwithselector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### `Rx.Observable.prototype.timeoutwithselector([firstTimeout], timeoutDurationSelector, [other])`
1+
### `Rx.Observable.prototype.timeoutWithSelector([firstTimeout], timeoutDurationSelector, [other])`
22
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/timeoutwithselector.js "View in source")
33

44
Returns the source observable sequence, switching to the other observable sequence if a timeout is signaled.

src/core/linq/observable/timeoutwithselector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Returns the source observable sequence, switching to the other observable sequence if a timeout is signaled.
33
* @param {Observable} [firstTimeout] Observable sequence that represents the timeout for the first element. If not provided, this defaults to Observable.never().
4-
* @param {Function} [timeoutDurationSelector] Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
4+
* @param {Function} timeoutDurationSelector Selector to retrieve an observable sequence that represents the timeout between the current element and the next element.
55
* @param {Observable} [other] Sequence to return in case of a timeout. If not provided, this is set to Observable.throwException().
66
* @returns {Observable} The source sequence switching to the other sequence in case of a timeout.
77
*/

0 commit comments

Comments
 (0)