diff options
author | Nobuyoshi Nakada <[email protected]> | 2025-01-02 12:06:06 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-01-02 12:23:49 +0900 |
commit | b4ec22fe6c493a212c059cecab90de5b5f349102 (patch) | |
tree | 1e4e274cfd5e2bc079142462b48eba6f04380e24 /array.c | |
parent | d441d351073d6a6c49f7c12ea99e17480aa4ee5e (diff) |
[DOC] Exclude 'Method' from RDoc's autolinking
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12496
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8302,7 +8302,7 @@ rb_ary_deconstruct(VALUE ary) * %i[foo bar baz] # => [:foo, :bar, :baz] * %i[1 % *] # => [:"1", :%, :*] * - * - \Method Kernel#Array: + * - Method Kernel#Array: * * Array(["a", "b"]) # => ["a", "b"] * Array(1..5) # => [1, 2, 3, 4, 5] @@ -8311,7 +8311,7 @@ rb_ary_deconstruct(VALUE ary) * Array(1) # => [1] * Array({:a => "a", :b => "b"}) # => [[:a, "a"], [:b, "b"]] * - * - \Method Array.new: + * - Method Array.new: * * Array.new # => [] * Array.new(3) # => [nil, nil, nil] |