From 93316a428cd31aed551bcc1b02c4ae614a14d6c0 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 2 Sep 2019 21:49:32 +0300 Subject: [PATCH] minor --- 1-js/11-async/02-promise-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/02-promise-basics/article.md b/1-js/11-async/02-promise-basics/article.md index 5a396b72..8106cf74 100644 --- a/1-js/11-async/02-promise-basics/article.md +++ b/1-js/11-async/02-promise-basics/article.md @@ -38,7 +38,7 @@ The `promise` object returned by `new Promise` constructor has internal properti - `state` — initially `"pending"`, then changes to either `"fulfilled"` when `resolve` is called or `"rejected"` when `reject` is called. - `result` — initially `undefined`, then changes to `value` when `resolve(value)` called or `error` when `reject(error)` is called. -So the executor moves `promise` to one of these states: +So the executor eventually moves `promise` to one of these states: ![](promise-resolve-reject.svg)