concurrent
Advanced tools
Comparing version 0.2.1 to 0.2.2
{ | ||
"name": "concurrent", | ||
"main": "browser/concurrent.js", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"homepage": "https://github.com/pspeter3/concurrent", | ||
@@ -6,0 +6,0 @@ "authors": [ |
{ | ||
"name": "concurrent", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Promises/A+ with Scala awesomeness", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -141,3 +141,3 @@ Concurrent | ||
Concurrent supports the a bare bones promise implementation that supports | ||
Concurrent supports the bare bones Promise implementation that supports | ||
`then(onFulfilled, onRejected)`, `fulfill(value)`, `reject(reason)`. | ||
@@ -221,3 +221,3 @@ | ||
### Working with other promise implementations | ||
### Working with other Promise implementations | ||
@@ -234,3 +234,4 @@ Since concurrent implements the Promises/A+ spec, it should work with other | ||
Concurrent can be used in browser environments that support ES5, specifically | ||
`forEach`, `Array.isArray` and `Object.create`. | ||
`forEach`, `Array.isArray` and `Object.create`. Look at this [JsFiddle](http://jsfiddle.net/pspeter3/h3MLs/) | ||
as an example of using the libary in the browser. | ||
@@ -240,4 +241,3 @@ Credits | ||
There was a lot of inspiration for this project and getting it done. I would | ||
like to thank: | ||
A lot of people had a hand in inspiring this project and helping getting it done. I'd like to thank: | ||
@@ -244,0 +244,0 @@ - [@brikis98](https://github.com/brikis98) for helping me come up with the idea |
64333