mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix links to Dig Methods document (#3421)
* Fix links to Dig Methods document * Fix links to Dig Methods document
This commit is contained in:
parent
fee1b98fde
commit
c84ccf1a07
Notes:
git
2020-08-15 08:55:41 +09:00
Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
4 changed files with 4 additions and 4 deletions
2
array.c
2
array.c
|
@ -8645,7 +8645,7 @@ rb_ary_one_p(int argc, VALUE *argv, VALUE ary)
|
|||
* Finds and returns the object in nested objects
|
||||
* that is specified by +index+ and +identifiers+.
|
||||
* The nested objects may be instances of various classes.
|
||||
* See {Dig Methods}[doc/dig_methods_rdoc.html].
|
||||
* See {Dig Methods}[rdoc-ref:doc/dig_methods.rdoc].
|
||||
*
|
||||
* Examples:
|
||||
* a = [:foo, [:bar, :baz, [:bat, :bam]]]
|
||||
|
|
2
hash.c
2
hash.c
|
@ -5085,7 +5085,7 @@ rb_hash_any_p(int argc, VALUE *argv, VALUE hash)
|
|||
* Finds and returns the object in nested objects
|
||||
* that is specified by +key+ and +identifiers+.
|
||||
* The nested objects may be instances of various classes.
|
||||
* See {Dig Methods}[doc/dig_methods_rdoc.html].
|
||||
* See {Dig Methods}[rdoc-ref:doc/dig_methods.rdoc].
|
||||
*
|
||||
* Examples:
|
||||
* h = {foo: {bar: {baz: 2}}}
|
||||
|
|
|
@ -261,7 +261,7 @@ class OpenStruct
|
|||
# Finds and returns the object in nested objects
|
||||
# that is specified by +name+ and +identifiers+.
|
||||
# The nested objects may be instances of various classes.
|
||||
# See {Dig Methods}[doc/dig_methods_rdoc.html].
|
||||
# See {Dig Methods}[rdoc-ref:doc/dig_methods.rdoc].
|
||||
#
|
||||
# Examples:
|
||||
# require "ostruct"
|
||||
|
|
2
struct.c
2
struct.c
|
@ -1333,7 +1333,7 @@ rb_struct_size(VALUE s)
|
|||
* Finds and returns the object in nested objects
|
||||
* that is specified by +key+ and +identifiers+.
|
||||
* The nested objects may be instances of various classes.
|
||||
* See {Dig Methods}[doc/dig_methods_rdoc.html].
|
||||
* See {Dig Methods}[rdoc-ref:doc/dig_methods.rdoc].
|
||||
*
|
||||
* Examples:
|
||||
* Foo = Struct.new(:a)
|
||||
|
|
Loading…
Reference in a new issue