Merge pull request #33 from toddmotto/patch-1

fix(readme): Typo on "evluated"
This commit is contained in:
hemanth.hm 2016-05-27 23:06:22 +05:30
commit b79c730ad6

View file

@ -303,7 +303,7 @@ let rand = function*() {
```
```js
let randIter = rand();
randIter.next(); // Each exectuion gives a random value, expression is evluated on need.
randIter.next(); // Each exectuion gives a random value, expression is evaluated on need.
```
---