diff options
author | Burdette Lamar <[email protected]> | 2022-04-08 14:25:38 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-08 14:25:38 -0500 |
commit | 70415071e82964bbd9cbf9391806ce7f396cf2a2 (patch) | |
tree | f131278a36ecd7abb47c5b01fca1526924ad0ac7 /string.c | |
parent | c77a31df5ed17231b2ddd213899716b900181ad2 (diff) |
Fix some RDoc links (#5778)
Notes
Notes:
Merged-By: BurdetteLamar <[email protected]>
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -3660,7 +3660,7 @@ static VALUE str_casecmp_p(VALUE str1, VALUE str2); * 'foo'.casecmp('FOO') # => 0 * 'foo'.casecmp(1) # => nil * - * See {Case Mapping}[case_mapping.rdoc]. + * See {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#casecmp?. * @@ -3750,7 +3750,7 @@ str_casecmp(VALUE str1, VALUE str2) * * 'foo'.casecmp?(1) # => nil * - * See {Case Mapping}[case_mapping.rdoc]. + * See {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#casecmp. * @@ -7330,7 +7330,7 @@ upcase_single(VALUE str) * s.upcase! # => nil * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#upcase, String#downcase, String#downcase!. * @@ -7369,7 +7369,7 @@ rb_str_upcase_bang(int argc, VALUE *argv, VALUE str) * s.upcase # => "HELLO WORLD!" * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#upcase!, String#downcase, String#downcase!. * @@ -7432,7 +7432,7 @@ downcase_single(VALUE str) * s.downcase! # => nil * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#downcase, String#upcase, String#upcase!. * @@ -7471,7 +7471,7 @@ rb_str_downcase_bang(int argc, VALUE *argv, VALUE str) * s.downcase # => "hello world!" * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#downcase!, String#upcase, String#upcase!. * @@ -7517,7 +7517,7 @@ rb_str_downcase(int argc, VALUE *argv, VALUE str) * s.capitalize! # => nil * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#capitalize. * @@ -7555,7 +7555,7 @@ rb_str_capitalize_bang(int argc, VALUE *argv, VALUE str) * s.capitalize # => "Hello world!" * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#capitalize!. * @@ -7596,7 +7596,7 @@ rb_str_capitalize(int argc, VALUE *argv, VALUE str) * ''.swapcase! # => nil * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#swapcase. * @@ -7633,7 +7633,7 @@ rb_str_swapcase_bang(int argc, VALUE *argv, VALUE str) * s.swapcase # => "hELLO wORLD!" * * The casing may be affected by the given +options+; - * see {Case Mapping}[case_mapping.rdoc]. + * see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: String#swapcase!. * @@ -11582,7 +11582,7 @@ sym_casecmp(VALUE sym, VALUE other) * sym.casecmp?(other_sym) # => nil * :foo.casecmp?(2) # => nil * - * See {Case Mapping}[case_mapping.rdoc]. + * See {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * * Related: Symbol#casecmp. * |