From 976cc3852b00560e48fe89b9c5ab77761e1d8f3b Mon Sep 17 00:00:00 2001 From: zverok Date: Sat, 18 Feb 2023 14:37:16 +0200 Subject: [PATCH] [DOC] Return *args to Enumerable method definitions --- enum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/enum.c b/enum.c index 391de0b337..e97fee2ef6 100644 --- a/enum.c +++ b/enum.c @@ -700,7 +700,7 @@ enum_flat_map(VALUE obj) /* * call-seq: - * to_a -> array + * to_a(*args) -> array * * Returns an array containing the items in +self+: * @@ -746,8 +746,8 @@ enum_to_h_ii(RB_BLOCK_CALL_FUNC_ARGLIST(i, hash)) /* * call-seq: - * to_h -> hash - * to_h {|element| ... } -> hash + * to_h(*args) -> hash + * to_h(*args) {|element| ... } -> hash * * When +self+ consists of 2-element arrays, * returns a hash each of whose entries is the key-value pair