Skip to content

Commit

Permalink
Fix typo in create-subscription readme
Browse files Browse the repository at this point in the history
PR: #12473
  • Loading branch information
catamphetamine authored and nhunzaker committed Mar 28, 2018
1 parent c2c3c0c commit 488ad5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-subscription/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Below is an example showing how `create-subscription` can be used with native Pr

**Note** that it an initial render value of `undefined` is unavoidable due to the fact that Promises provide no way to synchronously read their current value.

**Note** the lack of a way to "unsubscribe" from a Promise can result in memory leaks as long as something has a reference to the Promise. This should be taken into considerationg when determining whether Promises are appropriate to use in this way within your application.
**Note** the lack of a way to "unsubscribe" from a Promise can result in memory leaks as long as something has a reference to the Promise. This should be taken into consideration when determining whether Promises are appropriate to use in this way within your application.

```js
import React from "react";
Expand Down

0 comments on commit 488ad5a

Please sign in to comment.