aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-14 16:54:57 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-14 16:54:57 -0500
commitd1d686fdb7c6a6f992e077acfb0a8e3fcb7ff68e (patch)
tree1b15c6b3a82b54e81e202f0640bf50c761f83ee0
parentcdd34ac64a9a47a6b81a80a0c0d78fe96eef3217 (diff)
readme tweaks
-rw-r--r--README.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/README.md b/README.md
index 8dbb8a9..728f6f1 100644
--- a/README.md
+++ b/README.md
@@ -91,14 +91,15 @@ example apears at the end of the document, following the tutorial.
GTWIWTG is a tiny library for creating and using generators.
-If you have never heard of generators before, let me offer a
-definition.
+If you have never heard of generators before, let me offer *a*
+definition, but not *the* definition.
-A generator is an object that can produce a series of values, one
-value at a time. Generators are sometimes convenient when you want to
-deal with series that are too long to fit into memory. They also help
-when you want to generate sequential data using recurrence relations,
-as in the Fibonacci example above.
+For the purposes of this library, a generator is an object that can
+produce a series of values, one value at a time. Generators are
+sometimes convenient when you want to deal with series that are too
+long to fit into memory. They also help when you want to generate
+sequential data using recurrence relations, as in the Fibonacci
+example above.
### Three Kinds Of Function
@@ -208,7 +209,7 @@ The three core transformation functions are:
Admittedly, the behavior of `inflate!` is difficult to grok by reading a description.
Once you begin to use it, however, it becomes indispensible.
-[NB: `inflate!` is really the monadic bind operator in disguise.]
+[NB: `inflate!` is really a *kind of* monadic bind operator in disguise.]
Here are some simple examples of their use: