diff options
author | Colin Okay <cbeok@protonmail.com> | 2020-07-13 18:47:38 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-07-13 18:47:38 -0500 |
commit | cf4317625629a3a80dc05eb8ea48f32a59dec430 (patch) | |
tree | 6d9437f39a9042e47150e5b19db41a5f1e922d6b | |
parent | b659d33413f0319708a1672c1aa16332216b2b48 (diff) |
clarity
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -97,7 +97,8 @@ 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 functions. +when you want to generate sequential data using recurrence relations, +as in the Fibonacci example above. ### Three Kinds Of Function |