From a4b99f97642d31fc8ddd537155ff6cf61be6a43c Mon Sep 17 00:00:00 2001 From: zverok Date: Sun, 22 Dec 2019 22:56:44 +0200 Subject: [PATCH] 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. --- doc/syntax/exceptions.rdoc | 2 +- enumerator.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/syntax/exceptions.rdoc b/doc/syntax/exceptions.rdoc index 7fd58c83e8..31e2f0175c 100644 --- a/doc/syntax/exceptions.rdoc +++ b/doc/syntax/exceptions.rdoc @@ -17,7 +17,7 @@ wish to limit the scope of rescued exceptions: # ... end -The same is true for, +class+, +module+, and +block+: +The same is true for a +class+, +module+, and +block+: [0, 1, 2].map do |i| 10 / i 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 *