From a4b99f97642d31fc8ddd537155ff6cf61be6a43c Mon Sep 17 00:00:00 2001 From: zverok Date: Sun, 22 Dec 2019 22:56:44 +0200 Subject: Fix typos of previous docs PR In #2612 I made two typos (extra ,, and copy-pasted same line of code instead of showing two different ones), fixing them. --- enumerator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enumerator.c') diff --git a/enumerator.c b/enumerator.c index 0aa395a8ba..e8ee9e5737 100644 --- a/enumerator.c +++ b/enumerator.c @@ -316,7 +316,7 @@ proc_entry_ptr(VALUE proc_entry) * some_method(a.to_enum) * * # String#split in block form is more memory-effective: - * very_large_string.to_enum(:split, "|") { |chunk| return chunk if chunk.include?('DATE') } + * very_large_string.split("|") { |chunk| return chunk if chunk.include?('DATE') } * # This could be rewritten more idiomatically with to_enum: * very_large_string.to_enum(:split, "|").lazy.grep(/DATE/).first * -- cgit v1.2.3