Skip to content

Commit 21f8472

Browse files
BurdetteLamarpeterzhu2118
authored andcommitted
[DOC] Fix links in Array
1 parent ed0a5c6 commit 21f8472

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

array.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8423,12 +8423,12 @@ rb_ary_deconstruct(VALUE ary)
84238423
*
84248424
* [1, 'one', :one, [2, 'two', :two]]
84258425
*
8426-
* - A {%w or %W string-array Literal}[rdoc-ref:syntax/literals.rdoc@25w+and+-25W-3A+String-Array+Literals]:
8426+
* - A {%w or %W string-array Literal}[rdoc-ref:syntax/literals.rdoc@w-and-w-String-Array-Literals]:
84278427
*
84288428
* %w[foo bar baz] # => ["foo", "bar", "baz"]
84298429
* %w[1 % *] # => ["1", "%", "*"]
84308430
*
8431-
* - A {%i or %I symbol-array Literal}[rdoc-ref:syntax/literals.rdoc@25i+and+-25I-3A+Symbol-Array+Literals]:
8431+
* - A {%i or %I symbol-array Literal}[rdoc-ref:syntax/literals.rdoc@i+and-I-Symbol-Array+Literals]:
84328432
*
84338433
* %i[foo bar baz] # => [:foo, :bar, :baz]
84348434
* %i[1 % *] # => [:"1", :%, :*]
@@ -8690,8 +8690,8 @@ rb_ary_deconstruct(VALUE ary)
86908690
*
86918691
* First, what's elsewhere. Class \Array:
86928692
*
8693-
* - Inherits from {class Object}[rdoc-ref:Object@What-27s+Here].
8694-
* - Includes {module Enumerable}[rdoc-ref:Enumerable@What-27s+Here],
8693+
* - Inherits from {class Object}[rdoc-ref:Object@Whats-Here].
8694+
* - Includes {module Enumerable}[rdoc-ref:Enumerable@Whats-Here],
86958695
* which provides dozens of additional methods.
86968696
*
86978697
* Here, class \Array provides methods that are useful for:

0 commit comments

Comments
 (0)