From 444a749b81a37ec70f6b833d00a5b947716359a1 Mon Sep 17 00:00:00 2001 From: David Wickes Date: Sun, 23 Aug 2015 14:07:40 +0100 Subject: [PATCH] adds caps to JavaScript Consistent with first use on line 10 and the accepted spelling. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0a93c1b1..fa3f6f709 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