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

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpodwysocki committed Aug 21, 2015
2 parents 78d6560 + a84b13e commit ffa6063
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/api/core/operators/publishvalue.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Returns an observable sequence that is the result of invoking the selector on a
This operator is a specialization of `multicast` using a `Rx.BehaviorSubject`.

#### Arguments
1. `[selector]` *(`Function`)*: Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.
1. `[selector]` *(`Function`)*: Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.

#### Returns
*(ConnectableObservable)*: An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.
Expand Down
4 changes: 2 additions & 2 deletions doc/gettingstarted/which-instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ Use this page to find the instance operator implemented by the [`Observable`](ht
<tr>
<td colspan="2">and replay <em>n</em> number of values to future subscribers</td>
<td>
<a href="https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/publish.md">replay</a><br>
<a href="https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/share.md">shareReplay</a>
<a href="https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/replay.md">replay</a><br>
<a href="https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/sharereplay.md">shareReplay</a>
</td>
</tr>
<tr>
Expand Down

0 comments on commit ffa6063

Please sign in to comment.