aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index b2ce6ca..d26cc17 100644
--- a/README.md
+++ b/README.md
@@ -365,10 +365,10 @@ Here is an example to show you the illegal behavior:
```
The gist is that we tried to zip a generator with itself. Such
-behavior is not allowed. Generally speaking, if you passed a generator
-to one of the combining forms (all forms that end in a `!`), or if you
-pass the same generator to such a form twice, then an error will be
-raised and new the generator will not be built.
+behavior is not allowed. Generally speaking, if you pass a generator
+to more than one combining form (all forms that end in a `!`), or if
+you pass the same generator to such a form twice, then an error will
+be raised and new the generator will not be built.
An ongoing goal is to make those errors nicer to look at so that you
can more easily pin-point where you goofed.