Mark S. Miller (2015-06-24T22:20:39.000Z)
d at domenic.me (2015-07-07T02:07:43.846Z)
On Wed, Jun 24, 2015 at 3:17 PM, Mark S. Miller <erights at google.com> wrote: > ```js > flatMap([g1, g2]) is equivalent to > > (function*() { > yield* wrap(g1, function.sent); // result of g1 ignored! > return yield* wrap(g2, function.sent); > ``` I think this second yield* should just be return yield* g2;