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

Commit a2633f3

Browse files
2 parents 73cbf84 + c643c78 commit a2633f3

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

doc/api/core/operators/forkjoinproto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var subscription = source.subscribe(
3030
console.log('Completed');
3131
});
3232

33-
// => Next: 44
33+
// => Next: 45
3434
// => Completed
3535
```
3636

doc/api/core/operators/fromevent.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ eventEmitter.emit('data', 'baz', 'quux');
7272

7373
File:
7474
- [`/src/core/linq/observable/fromevent.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/fromevent.js)
75-
- [`/src/core/linq/observable/fromevent-modern.js`](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/fromevent-modern.js)
7675

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

doc/api/core/operators/takeuntilwithtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### <a id="rxobservableprototypetakeuntilwithtimeendtime-scheduler"></a>`Rx.Observable.prototype.takeUntilWithTime(endTime, [scheduler])`
22
<a href="#rxobservableprototypetakeuntilwithtimeendtime-scheduler">#</a> [&#x24C8;](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/takeuntil.js "View in source")
33

4-
Returns the values from the source observable sequence until the other observable sequence produces a value.
4+
Returns the values from the source observable sequence until the end time.
55

66
#### Arguments
77
1. `endTime` *(`Date` | `Number`)*: Time to stop taking elements from the source sequence. If this value is less than or equal to the current time, the result stream will complete immediately.

doc/libraries/main/rx.complete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ NuGet Packages:
139139
- [`pausableBuffered`](../../api/core/operators/pausablebuffered.md)
140140
- [`pluck`](../../api/core/operators/pluck.md)
141141
- [`publish`](../../api/core/operators/publish.md)
142-
- [`publishLast`](../../api/core/operators/publishlatest.md)
142+
- [`publishLast`](../../api/core/operators/publishlast.md)
143143
- [`publishValue`](../../api/core/operators/publishvalue.md)
144144
- [`share`](../../api/core/operators/share.md)
145145
- [`shareReplay`](../../api/core/operators/sharereplay.md)

modules/rx-lite-compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
],
2121
"bugs": "https://github.com/Reactive-Extensions/RxJS/issues",
2222
"jam": {
23-
"main": "rx.lite.js"
23+
"main": "rx.lite.compat.js"
2424
},
2525
"browser": {
26-
"index.js": "rx.lite.js"
26+
"index.js": "rx.lite.compat.js"
2727
},
2828
"dependencies": {},
2929
"devDependencies": {},

0 commit comments

Comments
 (0)