aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-08 20:04:16 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-08 20:04:16 -0500
commitc7eec0c107318bd449c7996d4e3639b05537b4b5 (patch)
treef37f06eeeeec62e16d8e88ef41528e988daab022 /README.md
parent87e072858f9cef09919d7f62dac19c092d546333 (diff)
more types and rewordings
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
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.