[DOC] Fix incorrect Array#fetch_values examples (#12337)

[DOC] Fix incorrect Array#fetch_values examples
This commit is contained in:
Kouhei Yanagita 2024-12-14 03:25:27 +09:00 committed by GitHub
parent 562b9fc525
commit a5f3a01375
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2024-12-13 18:25:46 +00:00
Merged-By: k0kubun <takashikkbn@gmail.com>

View File

@ -187,13 +187,13 @@ class Array
# {integer-convertible object}[rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects]:
#
# a = [:foo, :bar, :baz]
# a.fetch_values(3, 1) # => [:baz, :foo]
# a.fetch_values(3.1, 1) # => [:baz, :foo]
# a.fetch_values(2, 0) # => [:baz, :foo]
# a.fetch_values(2.1, 0) # => [:baz, :foo]
# a.fetch_values # => []
#
# For a negative index, counts backwards from the end of the array:
#
# a.fetch_values([-2, -1]) # [:bar, :baz]
# a.fetch_values(-2, -1) # [:bar, :baz]
#
# When no block is given, raises an exception if any index is out of range.
#