summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-06-21 17:08:42 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-06-21 17:11:11 +0900
commit887163beb8f27c5400cd04dbf98c474ed035526f (patch)
tree40cf9bcf2891faa593efe49759278f6ee4d34526
parent0174285e8cfea1ab7fa8dbbb6ab7607d74c20b9d (diff)
Fix call-seq of lazy.filter_map [ci skip]
-rw-r--r--enumerator.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/enumerator.c b/enumerator.c
index 3d19c40b15..21a7389708 100644
--- a/enumerator.c
+++ b/enumerator.c
@@ -2038,12 +2038,11 @@ lazy_filter_map_proc(RB_BLOCK_CALL_FUNC_ARGLIST(val, m))
/*
* call-seq:
- * enum.filter_map { |obj| block } -> an_enumerator
- * enum.filter_map -> an_enumerator
+ * lazy.filter_map { |obj| block } -> lazy_enumerator
*
* Returns an enumerator which will return a new array containing the
* truthy results (everything except +false+ or +nil+) of running the
- * +block+ for every element in +enum+.
+ * +block+ for every element in +lazy+.
*
* (1..).lazy.filter_map { |i| i * 2 if i.even? }.take(5) #=> [4, 8, 12, 16, 20]
*