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

Commit e429a1c

Browse files
committed
Fix document
1 parent 6924b84 commit e429a1c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/api/core/operators/and.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ NuGet Packages:
5454
- [`RxJS-JoinPatterns`](http://www.nuget.org/packages/RxJS-JoinPatterns)
5555

5656
Unit Tests:
57-
- [/tests/observable/and.js](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/and.js)
57+
- [/tests/observable/when.js](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/when.js)

doc/libraries/rx.joinpatterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ NuGet Dependencies:
3030
- [`and`](../api/core/operators/and.md)
3131

3232
### `Pattern Instance Methods`
33-
- [`then`](../api/core/operators/thendo.md)
33+
- [`thenDo`](../api/core/operators/thendo.md)

src/core/linq/observable/thendo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Matches when the observable sequence has an available value and projects the value.
33
*
4-
* @param selector Selector that will be invoked for values in the source sequence.
4+
* @param {Function} selector Selector that will be invoked for values in the source sequence.
55
* @returns {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator.
66
*/
77
observableProto.thenDo = function (selector) {

0 commit comments

Comments
 (0)