summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Maissy <brian.maissy@gmail.com>2013-03-05 01:29:06 +0200
committerBrian Maissy <brian.maissy@gmail.com>2013-03-05 01:29:06 +0200
commit5d977f15a31c3792b3f2bf455b76257941d5d48f (patch)
treee73bed05f6b06d8ad660beb3fbe259b64c26315f
parent82e638c909d4effb4108665918d771d08e9d8b9e (diff)
downloadasync-5d977f15a31c3792b3f2bf455b76257941d5d48f.tar.gz
fixed a couple typos for grammar sticklers
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 1716476..25cd576 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ __Production:__ [async.min.js](https://github.com/caolan/async/raw/master/dist/a
## In the Browser
-So far its been tested in IE6, IE7, IE8, FF3.6 and Chrome 5. Usage:
+So far it's been tested in IE6, IE7, IE8, FF3.6 and Chrome 5. Usage:
```html
<script type="text/javascript" src="async.js"></script>
@@ -339,7 +339,7 @@ function only operates in series. For performance reasons, it may make sense to
split a call to this function into a parallel map, then use the normal
Array.prototype.reduce on the results. This function is for situations where
each step in the reduction needs to be async, if you can get the data before
-reducing it then its probably a good idea to do so.
+reducing it then it's probably a good idea to do so.
__Arguments__
@@ -1110,7 +1110,7 @@ new tasks much easier and makes the code more readable.
### iterator(tasks)
Creates an iterator function which calls the next function in the array,
-returning a continuation to call the next one after that. Its also possible to
+returning a continuation to call the next one after that. It's also possible to
'peek' the next iterator by doing iterator.next().
This function is used internally by the async module but can be useful when