Skip to content

Commit

Permalink
docs: makeSubscriberKit → makeSubscriptionKit (#4269)
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 authored Jan 19, 2022
1 parent 513e83e commit 8a6875f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/notifier/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ an async iteration’s non-final values, as well as the final value.

On the other hand, NotifierKit is a *lossy conveyor* of non-final values, but does also
losslessly convey termination. Had the example above started with the following instead
of using `makeSubscriberKit()`,
of using `makeSubscriptionKit()`,
```js
const { updater, notifier } = makeNotifierKit();
```
Expand All @@ -117,7 +117,7 @@ each have missed either or both of the non-final values due to NotifierKit’s l

## Distributed Operation

Either makeNotifierKit or makeSubscriberKit can be used in a multicast manner with good
Either makeNotifierKit or makeSubscriptionKit can be used in a multicast manner with good
distributed systems properties, where there is only one producing site but any number of
consuming sites. The producer is not vulnerable to the consumers; they cannot cause the kit
to malfunction or prevent the code producing values from making progress. The consumers are
Expand Down

0 comments on commit 8a6875f

Please sign in to comment.