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

Commit 4e7c07f

Browse files
committed
Update for.md
1 parent 9c001e0 commit 4e7c07f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

doc/api/core/operators/for.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### `Rx.Observable.for(sources, resultSelector)`
1+
### `Rx.Observable.for(sources, resultSelector, [thisArg])`
22
[Ⓢ](https://github.com/Reactive-Extensions/RxJS/blob/master/tests/observable/for.js "View in source")
33

44
Concatenates the observable sequences or Promises obtained by running the specified result selector for each element in source.
@@ -7,6 +7,7 @@ There is an alias for this method called `forIn` for browsers <IE9
77
#### Arguments
88
1. `sources` *(Array)*: An array of values to turn into an observable sequence.
99
2. `resultSelector` *(`Function`)*: A function to apply to each item in the sources array to turn it into an observable sequence.
10+
3. `[thisArg]` *(`Any`)*: Object to use as `this` when executing `resultSelector`.
1011

1112
#### Returns
1213
*(`Observable`)*: An observable sequence from the concatenated observable sequences or Promises.

0 commit comments

Comments
 (0)