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

Commit

Permalink
Fixed broken links in the docs (#1237)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwdan authored and mattpodwysocki committed Dec 6, 2016
1 parent 435f023 commit 3bbc213
Show file tree
Hide file tree
Showing 46 changed files with 72 additions and 74 deletions.
2 changes: 1 addition & 1 deletion doc/api/core/operators/amb.md
Expand Up @@ -73,4 +73,4 @@ NuGet Packages:
- [`RxJS-Main`](http://www.nuget.org/packages/RxJS-Main/)

Unit Tests:
- [`/tests/observable/ambproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/ambproto.js)
- [`/tests/observable/amb.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/amb.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/catch.md
Expand Up @@ -56,4 +56,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/catchproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catchproto.js)
- [`/tests/observable/catch.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catch.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/catchproto.md
Expand Up @@ -80,4 +80,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/catchexceptionproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catchproto.js)
- [`/tests/observable/catch.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/catch.js)
6 changes: 3 additions & 3 deletions doc/api/core/operators/combinelatest.md
@@ -1,5 +1,5 @@
### `Rx.Observable.combineLatest(...args, [resultSelector])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/combinelatest.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/combinelatest.js "View in source")

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.

Expand Down Expand Up @@ -76,7 +76,7 @@ var subscription = source.subscribe(
### Location

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

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

Unit Tests:
- [`/tests/observable/combinelatestproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatestproto.js)
- [`/tests/observable/combinelatest.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatest.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/combinelatestproto.md
Expand Up @@ -94,4 +94,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/combinelatestproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatestproto.js)
- [`/tests/observable/combinelatest.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/combinelatest.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/concat.md
Expand Up @@ -79,4 +79,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/concatproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concatproto.js)
- [`/tests/observable/concat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concat.js)
4 changes: 2 additions & 2 deletions doc/api/core/operators/concatall.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.concatAll()` ###
### `Rx.Observable.prototype.concatObservable()` **DEPRECATED** ###
[Ⓢ](/src/core/linq/observable/concatobservable.js](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatall.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatall.js "View in source")

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

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

Unit Tests:
- [/tests/observable/concatall.js](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concatall.js)
- [/tests/observable/concat.js](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concat.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/concatmap.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.concatMap(selector, [resultSelector], [thisArg])`
### `Rx.Observable.prototype.selectConcat(selector, [resultSelector], [thisArg])`
[Ⓢ]((https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatmap.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/concatmap.js "View in source")

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

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/concatproto.md
Expand Up @@ -73,4 +73,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/concatproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concatproto.js)
- [`/tests/observable/concat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/concat.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/dematerialize.md
Expand Up @@ -51,4 +51,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/dematerialize.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/dematerialize.js)
- [`/tests/observable/materialize.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/materialize.js)
2 changes: 1 addition & 1 deletion doc/api/core/operators/do.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.do([observer] | [onNext], [onError], [onCompleted])` ###
### `Rx.Observable.prototype.tap([observer] | [onNext], [onError], [onCompleted])` ###
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")

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

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/dooncompleted.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.doOnCompleted(onCompleted, [thisArg])`
### `Rx.Observable.prototype.tapOnCompleted(onCompleted, [thisArg])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")

Invokes an action upon graceful termination of the observable sequence.

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/doonerror.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.doOnError(onError, [thisArg])`
### `Rx.Observable.prototype.tapOnError(onError, [thisArg])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")

Invokes an action upon exceptional termination of the observable sequence.

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/doonnext.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.doOnNext(onNext, [thisArg])`
### `Rx.Observable.prototype.tapOnNext(onNext, [thisArg])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/do.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js "View in source")

Invokes an action for each element of the observable sequence.

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/flatmapwithmaxconcurrent.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.flatMapWithMaxConcurrent(maxConcurrent, selector, [resultSelector], [thisArg])`
### `Rx.Observable.prototype.selectWithMaxConcurrent(maxConcurrent, selector, [resultSelector], [thisArg])`
[Ⓢ]((https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/flatmapwithmaxconcurrent.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/flatmapwithmaxconcurrent.js "View in source")

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

Expand Down
1 change: 0 additions & 1 deletion doc/api/core/operators/fromevent.md
Expand Up @@ -93,5 +93,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/fromevent-compat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/fromevent-compat.js)
- [`/tests/observable/fromevent.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/fromevent.js)
4 changes: 2 additions & 2 deletions doc/api/core/operators/fromnodecallback.md
@@ -1,5 +1,5 @@
### `Rx.Observable.fromNodeCallback(func, [context], [selector])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/fromnodecallback.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/fromnodecallback.js "View in source")

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

Expand Down Expand Up @@ -40,7 +40,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.async.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.async.js)
Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/frompromise.md
@@ -1,5 +1,5 @@
### `Rx.Observable.fromPromise(promise)`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/frompromise.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/frompromise.js "View in source")

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

Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/ignoreelements.md
@@ -1,5 +1,5 @@
### `Rx.Observable.prototype.ignoreElements()`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/ignoreelements.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/ignoreelements.js "View in source")

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

Expand Down Expand Up @@ -28,7 +28,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/mergeall.md
@@ -1,6 +1,6 @@
### `Rx.Observable.prototype.mergeAll()` ###
### `Rx.Observable.prototype.mergeObservable()` **DEPRECATED** ###
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/mergeall.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/mergeall.js "View in source")

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

Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/mergeproto.md
Expand Up @@ -95,6 +95,6 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

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

* * *
4 changes: 2 additions & 2 deletions doc/api/core/operators/never.md
@@ -1,5 +1,5 @@
### `Rx.Observable.never()`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/never.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/never.js "View in source")

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

Expand All @@ -26,7 +26,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/of.md
@@ -1,5 +1,5 @@
### `Rx.Observable.of(...args)`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/of.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/of.js "View in source")

Converts arguments to an observable sequence.

Expand Down Expand Up @@ -33,7 +33,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/ofwithscheduler.md
@@ -1,5 +1,5 @@
### `Rx.Observable.ofWithScheduler([scheduler], ...args)`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/of.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/of.js "View in source")

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

Expand Down Expand Up @@ -34,7 +34,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/pairs.md
@@ -1,5 +1,5 @@
### `Rx.Observable.pairs(obj, [scheduler])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/pairs.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/pairs.js "View in source")

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

Expand Down Expand Up @@ -69,7 +69,7 @@ let subscription = source.subscribe(
### Location

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

Dist:
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/range.md
@@ -1,5 +1,5 @@
### `Rx.Observable.range(start, count, [scheduler])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/range.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/range.js "View in source")

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

Expand Down Expand Up @@ -35,7 +35,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/reduce.md
@@ -1,5 +1,5 @@
### `Rx.Observable.prototype.reduce(accumulator, [seed])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/reduce.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/reduce.js "View in source")

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.

Expand Down Expand Up @@ -62,7 +62,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.all.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.all.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/repeat.md
@@ -1,5 +1,5 @@
### `Rx.Observable.repeat(value, [repeatCount], [scheduler])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/repeat.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/repeat.js "View in source")

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

Expand Down Expand Up @@ -35,7 +35,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)
Expand Down
2 changes: 1 addition & 1 deletion doc/api/core/operators/repeatproto.md
Expand Up @@ -59,4 +59,4 @@ NuGet Packages:
- [`RxJS-Lite`](http://www.nuget.org/packages/RxJS-Lite/)

Unit Tests:
- [`/tests/observable/repeatproto.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/repeatproto.js)
- [`/tests/observable/repeat.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/repeat.js)
4 changes: 2 additions & 2 deletions doc/api/core/operators/return.md
@@ -1,6 +1,6 @@
### `Rx.Observable.return(value, [scheduler])` ###
### `Rx.Observable.just(value, [scheduler])` ###
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/return.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/just.js "View in source")

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

Expand Down Expand Up @@ -35,7 +35,7 @@ var subscription = source.subscribe(
### Location

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

Dist:
- [`rx.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/dist/rx.js)
Expand Down
4 changes: 2 additions & 2 deletions doc/api/core/operators/scan.md
@@ -1,5 +1,5 @@
### `Rx.Observable.prototype.scan(accumulator, [seed])`
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/scan.js "View in source")
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/scan.js "View in source")

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

Expand Down Expand Up @@ -64,7 +64,7 @@ var subscription = source.subscribe(
### Location

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

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

0 comments on commit 3bbc213

Please sign in to comment.