From 8d5ba067a3420ab95da6377c4a65d21f66d9bdbe Mon Sep 17 00:00:00 2001 From: Chip Miller Date: Fri, 6 Dec 2013 14:47:21 -0800 Subject: [PATCH] Update promise.md spelling patch --- md/promise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md/promise.md b/md/promise.md index 8fcc2d4ac..7f79eec81 100644 --- a/md/promise.md +++ b/md/promise.md @@ -15,7 +15,7 @@ upon resolution. When a promise is rejected all its children will be summarily r Promises have three possible states: *pending*, *rejected*, and *fulfilled*. When a promise is created it is set to *pending* and will remain in that state until processing is complete. A completed promise is either *rejected*, -indicating that an exception was thrown during processing, or *fulfilled*, indicating succedd. If a promise is +indicating that an exception was thrown during processing, or *fulfilled*, indicating it succeeded. If a promise is *fulfilled* its `value` will be updated to reflect the result of the operation. If *rejected* the `reason` will be updated with a reference to the thrown exception. The predicate methods `pending?`, `rejected`, and `fulfilled?` can be called at any time to obtain the state of the promise, as can the `state` method, which returns a symbol.