diff options
-rw-r--r-- | README.md | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -228,11 +228,11 @@ Here are some simple examples of their use: - `(skip-while! pred gen)` produces a generator by skippng elements of `gen` while `pred` is `t` - `(merge! comp gen1 gen2 &rest gens)` emulates the behavior of `merge` but for generators -Theres also `yield-to!`, but it is kind of dark magic. If when you are -creating your generators you find yourself need to to stop and restart -generators mid-generation, then checkout the docstring for -`yield-to!`. I may end up removing it from the library because its -use could easily lead to confusing situations. +There's also `yield-to!`, but it is kind of dark magic. If, when you +are creating your generators, you find yourself needing to to stop and +restart generators mid-iteration, then check out the docstring for +`yield-to!`. I may end up removing it from the library because its use +could easily lead to confusing situations. ### The Fundamental Consumer @@ -297,9 +297,9 @@ suitable for use in the binding form of a `DESTRUCTURING-BIND`, like `(x y)` above. On each iteration, the variables in the binding form are bound to -successive values of generated by the generator form. Notice that you -do not need to inline your generator form, you can build it up and -pass it in as in the thrid example above. +successive values generated by the generator form. Notice that you do +not need to inline your generator form, you can build it up and pass +it in as in the thrid example above. Finally, the body is evaluated for each iteration. |