Skip to content

Commit 19c6265

Browse files
committed
Fix small typos in create-subscription readme
1 parent dc48326 commit 19c6265

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/create-subscription/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ const ReplaySubscription = createSubscription({
135135

136136
Below is an example showing how `create-subscription` can be used with native Promises.
137137

138-
**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.
138+
**Note** that an initial render value of `undefined` is unavoidable due to the fact that Promises provide no way to synchronously read their current value.
139139

140-
**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.
140+
**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.
141141

142142
```js
143143
import React from "react";

0 commit comments

Comments
 (0)