corrected typos

This commit is contained in:
Chandan Rai
2017-08-31 01:50:33 +05:30
parent f0a1af0c46
commit 08cc50e875
7 changed files with 9 additions and 9 deletions

View File

@ -27,7 +27,7 @@ in a synchronous way.
Promise pattern is applicable in concurrent programming when some work needs to be done asynchronously
and:
* code maintainablity and readability suffers due to callback hell.
* code maintainability and readability suffers due to callback hell.
* you need to compose promises and need better error handling for asynchronous tasks.
* you want to use functional style of programming.
@ -44,4 +44,4 @@ and:
## Credits
* [You are missing the point to Promises](https://gist.github.com/domenic/3889970)
* [Functional style callbacks using CompleteableFuture](https://www.infoq.com/articles/Functional-Style-Callbacks-Using-CompletableFuture)
* [Functional style callbacks using CompletableFuture](https://www.infoq.com/articles/Functional-Style-Callbacks-Using-CompletableFuture)