summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Wickes <dave.wickes@gmail.com>2015-08-23 14:07:40 +0100
committerDavid Wickes <dave.wickes@gmail.com>2015-08-23 14:07:40 +0100
commit444a749b81a37ec70f6b833d00a5b947716359a1 (patch)
tree7f59c4c2b3c3dd6edaa42254b7cb1177a29d5041
parent92f78aebad222d60c13e4299c0e723f2fe2d6611 (diff)
downloadasync-444a749b81a37ec70f6b833d00a5b947716359a1.tar.gz
adds caps to JavaScript
Consistent with first use on line 10 and the accepted spelling.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c0a93c1..fa3f6f7 100644
--- a/README.md
+++ b/README.md
@@ -86,7 +86,7 @@ async.eachSeries(hugeArray, function iterator(item, callback) {
Async guards against synchronous functions in some, but not all, cases. If you are still running into stack overflows, you can defer as suggested above, or wrap functions with [`async.ensureAsync`](#ensureAsync) Functions that are asynchronous by their nature do not have this problem and don't need the extra callback deferral.
-If javascript's event loop is still a bit nebulous, check out [this article](http://blog.carbonfive.com/2013/10/27/the-javascript-event-loop-explained/) or [this talk](http://2014.jsconf.eu/speakers/philip-roberts-what-the-heck-is-the-event-loop-anyway.html) for more detailed information about how it works.
+If JavaScript's event loop is still a bit nebulous, check out [this article](http://blog.carbonfive.com/2013/10/27/the-javascript-event-loop-explained/) or [this talk](http://2014.jsconf.eu/speakers/philip-roberts-what-the-heck-is-the-event-loop-anyway.html) for more detailed information about how it works.
### Multiple callbacks