From c7eec0c107318bd449c7996d4e3639b05537b4b5 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Wed, 8 Jul 2020 20:04:16 -0500 Subject: more types and rewordings --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 06bf4ef..acf51d3 100644 --- a/README.md +++ b/README.md @@ -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. -- cgit v1.2.3