From 488ad5a6b94ac4b71ff587ecde05e48a218aba62 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Wed, 28 Mar 2018 15:51:16 +0300 Subject: [PATCH] Fix typo in create-subscription readme PR: #12473 --- packages/create-subscription/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-subscription/README.md b/packages/create-subscription/README.md index 26308fe1e7b6f..370bd9d9da6e3 100644 --- a/packages/create-subscription/README.md +++ b/packages/create-subscription/README.md @@ -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";