Skip to content

Commit 3bbc213

Browse files
davidwdanmattpodwysocki
authored andcommitted
Fixed broken links in the docs (Reactive-Extensions#1237)
1 parent 435f023 commit 3bbc213

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+72
-74
lines changed

doc/api/core/operators/amb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ NuGet Packages:
7373
- [`RxJS-Main`](http://www.nuget.org/packages/RxJS-Main/)
7474

7575
Unit Tests:
76-
- [`/tests/observable/ambproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/ambproto.js)
76+
- [`/tests/observable/amb.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/amb.js)

doc/api/core/operators/catch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ NuGet Packages:
5656
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
5757

5858
Unit Tests:
59-
- [`/tests/observable/catchproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catchproto.js)
59+
- [`/tests/observable/catch.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catch.js)

doc/api/core/operators/catchproto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ NuGet Packages:
8080
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
8181

8282
Unit Tests:
83-
- [`/tests/observable/catchexceptionproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catchproto.js)
83+
- [`/tests/observable/catch.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catch.js)

doc/api/core/operators/combinelatest.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.combineLatest(...args, [resultSelector])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/combinelatest.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/combinelatest.js "View in source")
33

44
Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. This can be in the form of an argument list of observables or an array. If the result selector is omitted, a list with the elements will be yielded.
55

@@ -76,7 +76,7 @@ var subscription = source.subscribe(
7676
### Location
7777

7878
File:
79-
- [`/src/core/linq/observable/combinelatest.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/combinelatest.js)
79+
- [`/src/core/perf/operators/combinelatest.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/combinelatest.js)
8080

8181
Dist:
8282
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)
@@ -96,4 +96,4 @@ NuGet Packages:
9696
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
9797

9898
Unit Tests:
99-
- [`/tests/observable/combinelatestproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatestproto.js)
99+
- [`/tests/observable/combinelatest.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatest.js)

doc/api/core/operators/combinelatestproto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ NuGet Packages:
9494
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
9595

9696
Unit Tests:
97-
- [`/tests/observable/combinelatestproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatestproto.js)
97+
- [`/tests/observable/combinelatest.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatest.js)

doc/api/core/operators/concat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ NuGet Packages:
7979
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
8080

8181
Unit Tests:
82-
- [`/tests/observable/concatproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concatproto.js)
82+
- [`/tests/observable/concat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concat.js)

doc/api/core/operators/concatall.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.concatAll()` ###
22
### `Rx.Observable.prototype.concatObservable()` **DEPRECATED** ###
3-
[Ⓢ](/src/core/linq/observable/concatobservable.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatall.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatall.js "View in source")
44

55
Concatenates a sequence of observable sequences or promises into a single observable sequence.
66

@@ -58,4 +58,4 @@ NuGet Packages:
5858
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
5959

6060
Unit Tests:
61-
- [/tests/observable/concatall.js](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concatall.js)
61+
- [/tests/observable/concat.js](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concat.js)

doc/api/core/operators/concatmap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.concatMap(selector, [resultSelector], [thisArg])`
22
### `Rx.Observable.prototype.selectConcat(selector, [resultSelector], [thisArg])`
3-
[Ⓢ]((https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatmap.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatmap.js "View in source")
44

55
This is an alias for the `selectConcat` method. This can be one of the following:
66

doc/api/core/operators/concatproto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ NuGet Packages:
7373
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
7474

7575
Unit Tests:
76-
- [`/tests/observable/concatproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concatproto.js)
76+
- [`/tests/observable/concat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concat.js)

doc/api/core/operators/dematerialize.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ NuGet Packages:
5151
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
5252

5353
Unit Tests:
54-
- [`/tests/observable/dematerialize.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/dematerialize.js)
54+
- [`/tests/observable/materialize.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/materialize.js)

doc/api/core/operators/do.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.do([observer] | [onNext], [onError], [onCompleted])` ###
22
### `Rx.Observable.prototype.tap([observer] | [onNext], [onError], [onCompleted])` ###
3-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")
44

55
Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence.
66

doc/api/core/operators/dooncompleted.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.doOnCompleted(onCompleted, [thisArg])`
22
### `Rx.Observable.prototype.tapOnCompleted(onCompleted, [thisArg])`
3-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")
44

55
Invokes an action upon graceful termination of the observable sequence.
66

doc/api/core/operators/doonerror.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.doOnError(onError, [thisArg])`
22
### `Rx.Observable.prototype.tapOnError(onError, [thisArg])`
3-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")
44

55
Invokes an action upon exceptional termination of the observable sequence.
66

doc/api/core/operators/doonnext.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.doOnNext(onNext, [thisArg])`
22
### `Rx.Observable.prototype.tapOnNext(onNext, [thisArg])`
3-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")
44

55
Invokes an action for each element of the observable sequence.
66

doc/api/core/operators/flatmapwithmaxconcurrent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.flatMapWithMaxConcurrent(maxConcurrent, selector, [resultSelector], [thisArg])`
22
### `Rx.Observable.prototype.selectWithMaxConcurrent(maxConcurrent, selector, [resultSelector], [thisArg])`
3-
[Ⓢ]((https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/flatmapwithmaxconcurrent.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/flatmapwithmaxconcurrent.js "View in source")
44

55
This is an alias for the `selectWithMaxConcurrent` method. This can be one of the following:
66

doc/api/core/operators/fromevent.md

-1
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,4 @@ NuGet Packages:
9393
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
9494

9595
Unit Tests:
96-
- [`/tests/observable/fromevent-compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/fromevent-compat.js)
9796
- [`/tests/observable/fromevent.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/fromevent.js)

doc/api/core/operators/fromnodecallback.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.fromNodeCallback(func, [context], [selector])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/fromnodecallback.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/fromnodecallback.js "View in source")
33

44
Converts a Node.js callback style function to an observable sequence. This must be in function (err, ...) format.
55

@@ -40,7 +40,7 @@ var subscription = source.subscribe(
4040
### Location
4141

4242
File:
43-
- [/src/core/linq/observable/fromnodecallback.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/fromnodecallback.js)
43+
- [/src/core/perf/operators/fromnodecallback.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/fromnodecallback.js)
4444

4545
Dist:
4646
- [`rx.async.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.async.js)

doc/api/core/operators/frompromise.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.fromPromise(promise)`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/frompromise.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/frompromise.js "View in source")
33

44
Converts a Promises/A+ spec compliant Promise and/or ES2015 compliant Promise or a factory function which returns said Promise to an Observable sequence.
55

doc/api/core/operators/ignoreelements.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.prototype.ignoreElements()`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/ignoreelements.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/ignoreelements.js "View in source")
33

44
Ignores all elements in an observable sequence leaving only the termination messages.
55

@@ -28,7 +28,7 @@ var subscription = source.subscribe(
2828
### Location
2929

3030
File:
31-
- [`/src/core/linq/observable/ignoreelements.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/ignoreelements.js)
31+
- [`/src/core/perf/operators/ignoreelements.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/ignoreelements.js)
3232

3333
Dist:
3434
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)

doc/api/core/operators/mergeall.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.prototype.mergeAll()` ###
22
### `Rx.Observable.prototype.mergeObservable()` **DEPRECATED** ###
3-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/mergeall.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/mergeall.js "View in source")
44

55
Merges an observable sequence of observable sequences into an observable sequence.
66

doc/api/core/operators/mergeproto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ NuGet Packages:
9595
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
9696

9797
Unit Tests:
98-
- [`/tests/observable/mergeproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/mergeproto.js)
98+
- [`/tests/observable/mergeconcat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/mergeconcat.js)
9999

100100
* * *

doc/api/core/operators/never.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.never()`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/never.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/never.js "View in source")
33

44
Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins).
55

@@ -26,7 +26,7 @@ var subscription = source.subscribe(
2626
### Location
2727

2828
File:
29-
- [/src/core/linq/observable/never.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/never.js)
29+
- [/src/core/perf/operators/never.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/never.js)
3030

3131
Dist:
3232
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)

doc/api/core/operators/of.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.of(...args)`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/of.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/of.js "View in source")
33

44
Converts arguments to an observable sequence.
55

@@ -33,7 +33,7 @@ var subscription = source.subscribe(
3333
### Location
3434

3535
File:
36-
- [`/src/core/linq/observable/of.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/of.js)
36+
- [`/src/core/perf/operators/of.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/of.js)
3737

3838
Dist:
3939
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)

doc/api/core/operators/ofwithscheduler.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.ofWithScheduler([scheduler], ...args)`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/of.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/of.js "View in source")
33

44
Converts arguments to an observable sequence, using an optional scheduler to enumerate the arguments.
55

@@ -34,7 +34,7 @@ var subscription = source.subscribe(
3434
### Location
3535

3636
File:
37-
- [`/src/core/linq/observable/of.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/of.js)
37+
- [`/src/core/perf/operators/of.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/of.js)
3838

3939
Dist:
4040
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)

doc/api/core/operators/pairs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.pairs(obj, [scheduler])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/pairs.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/pairs.js "View in source")
33

44
Convert an object into an observable sequence of [key, value] pairs using an optional `Scheduler` to enumerate the object.
55

@@ -69,7 +69,7 @@ let subscription = source.subscribe(
6969
### Location
7070

7171
File:
72-
- [`/src/core/linq/observable/pairs.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/pairs.js)
72+
- [`/src/core/perf/operators/pairs.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/pairs.js)
7373

7474
Dist:
7575
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)

doc/api/core/operators/range.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.range(start, count, [scheduler])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/range.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/range.js "View in source")
33

44
Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages.
55

@@ -35,7 +35,7 @@ var subscription = source.subscribe(
3535
### Location
3636

3737
File:
38-
- [/src/core/linq/observable/range.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/range.js)
38+
- [/src/core/perf/operators/range.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/range.js)
3939

4040
Dist:
4141
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)

doc/api/core/operators/reduce.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.prototype.reduce(accumulator, [seed])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/reduce.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/reduce.js "View in source")
33

44
Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
55

@@ -62,7 +62,7 @@ var subscription = source.subscribe(
6262
### Location
6363

6464
File:
65-
- [`/src/core/linq/observable/reduce.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/reduce.js)
65+
- [`/src/core/perf/operators/reduce.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/reduce.js)
6666

6767
Dist:
6868
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)

doc/api/core/operators/repeat.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.repeat(value, [repeatCount], [scheduler])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/repeat.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/repeat.js "View in source")
33

44
Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages.
55

@@ -35,7 +35,7 @@ var subscription = source.subscribe(
3535
### Location
3636

3737
File:
38-
- [/src/core/linq/observable/repeat.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/repeat.js)
38+
- [/src/core/perf/operators/repeat.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/repeat.js)
3939

4040
Dist:
4141
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)

doc/api/core/operators/repeatproto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ NuGet Packages:
5959
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)
6060

6161
Unit Tests:
62-
- [`/tests/observable/repeatproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/repeatproto.js)
62+
- [`/tests/observable/repeat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/repeat.js)

doc/api/core/operators/return.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### `Rx.Observable.return(value, [scheduler])` ###
22
### `Rx.Observable.just(value, [scheduler])` ###
3-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/return.js "View in source")
3+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/just.js "View in source")
44

55
Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages.
66

@@ -35,7 +35,7 @@ var subscription = source.subscribe(
3535
### Location
3636

3737
File:
38-
- [`/src/core/linq/observable/return.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/return.js)
38+
- [`/src/core/perf/operators/just.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/just.js)
3939

4040
Dist:
4141
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)

doc/api/core/operators/scan.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### `Rx.Observable.prototype.scan(accumulator, [seed])`
2-
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/scan.js "View in source")
2+
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/scan.js "View in source")
33

44
Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
55

@@ -64,7 +64,7 @@ var subscription = source.subscribe(
6464
### Location
6565

6666
File:
67-
- [`/src/core/linq/observable/scan.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/scan.js)
67+
- [`/src/core/perf/operators/scan.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/scan.js)
6868

6969
Dist:
7070
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)

0 commit comments

Comments
 (0)