diff options
author | Colin Okay <cbeok@protonmail.com> | 2020-07-08 21:03:12 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-07-08 21:03:12 -0500 |
commit | 2cc0e442645df0fb7aec869d48d3ae05bdf2b267 (patch) | |
tree | 5b7f51668b3d75e0d6b81ebb7f9e0df1ff157aef | |
parent | 0dedd219c8f4be314bf396fcb3e63fe3b164058b (diff) |
minor rewording
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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. |