From 2d2d00de662cd5e6c08a0d62ffef5116f3037baa Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 29 Jul 2023 10:42:02 +0300 Subject: [PATCH] Correct a typo in Readme.adoc --- Readme.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.adoc b/Readme.adoc index fc0f382..0f470d2 100644 --- a/Readme.adoc +++ b/Readme.adoc @@ -115,7 +115,7 @@ Generator that delegates to the original. The only methods that evaluate the `Generator` are the "terminal operation" methods like `foreach`/`find`, or the "Conversion" methods like `toArray` or similar. In this way, `Generator` behaves similarly to `Iterator`, whose -`map`/`filter` methods are also lazy until terminal oepration is called. +`map`/`filter` methods are also lazy until terminal operation is called. Terminal operations include the following: