From 383685b52b086643f7d6e65a4d74fda90d3a64af Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Tue, 19 Jan 2021 06:52:09 -0600 Subject: [PATCH] Explicit references to Enumerable --- array.c | 5 ++++- hash.c | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/array.c b/array.c index 7d10c1b7bd..46c6d738b7 100644 --- a/array.c +++ b/array.c @@ -8077,7 +8077,10 @@ rb_ary_deconstruct(VALUE ary) * * == What's Here * - * Class Array provides methods that are useful for: + * First, what's elsewhere. \Array includes the module Enumerable, + * which provides dozens of additional methods. + * + * Here, class \Array provides methods that are useful for: * * - {Creating an Array}[#class-Array-label-Methods+for+Creating+an+Array] * - {Querying}[#class-Array-label-Methods+for+Querying] diff --git a/hash.c b/hash.c index a7a29ba3f6..b34351aab3 100644 --- a/hash.c +++ b/hash.c @@ -6845,7 +6845,10 @@ env_update(VALUE env, VALUE hash) * * === What's Here * - * \Class \Hash provides methods that are useful for: + * First, what's elsewhere. \Hash includes the module Enumerable, + * which provides dozens of additional methods. + * + * Here, class \Hash provides methods that are useful for: * * - {Creating a Hash}[#class-Hash-label-Methods+for+Creating+a+Hash] * - {Setting Hash State}[#class-Hash-label-Methods+for+Setting+Hash+State]