[DOC] Remove unnecessary rdoc-ref: schemes

This commit is contained in:
Nobuyoshi Nakada 2022-02-12 12:37:51 +09:00
parent 50c972a1ae
commit 6e65e04186
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -3707,7 +3707,7 @@ static VALUE str_casecmp_p(VALUE str1, VALUE str2);
* 'foo'.casecmp('FOO') # => 0 * 'foo'.casecmp('FOO') # => 0
* 'foo'.casecmp(1) # => nil * 'foo'.casecmp(1) # => nil
* *
* See {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * See {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#casecmp?. * Related: String#casecmp?.
* *
@ -3797,7 +3797,7 @@ str_casecmp(VALUE str1, VALUE str2)
* *
* 'foo'.casecmp?(1) # => nil * 'foo'.casecmp?(1) # => nil
* *
* See {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * See {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#casecmp. * Related: String#casecmp.
* *
@ -7170,7 +7170,7 @@ upcase_single(VALUE str)
* s.upcase! # => nil * s.upcase! # => nil
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#upcase, String#downcase, String#downcase!. * Related: String#upcase, String#downcase, String#downcase!.
* *
@ -7209,7 +7209,7 @@ rb_str_upcase_bang(int argc, VALUE *argv, VALUE str)
* s.upcase # => "HELLO WORLD!" * s.upcase # => "HELLO WORLD!"
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#upcase!, String#downcase, String#downcase!. * Related: String#upcase!, String#downcase, String#downcase!.
* *
@ -7272,7 +7272,7 @@ downcase_single(VALUE str)
* s.downcase! # => nil * s.downcase! # => nil
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#downcase, String#upcase, String#upcase!. * Related: String#downcase, String#upcase, String#upcase!.
* *
@ -7311,7 +7311,7 @@ rb_str_downcase_bang(int argc, VALUE *argv, VALUE str)
* s.downcase # => "hello world!" * s.downcase # => "hello world!"
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#downcase!, String#upcase, String#upcase!. * Related: String#downcase!, String#upcase, String#upcase!.
* *
@ -7357,7 +7357,7 @@ rb_str_downcase(int argc, VALUE *argv, VALUE str)
* s.capitalize! # => nil * s.capitalize! # => nil
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#capitalize. * Related: String#capitalize.
* *
@ -7395,7 +7395,7 @@ rb_str_capitalize_bang(int argc, VALUE *argv, VALUE str)
* s.capitalize # => "Hello world!" * s.capitalize # => "Hello world!"
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#capitalize!. * Related: String#capitalize!.
* *
@ -7436,7 +7436,7 @@ rb_str_capitalize(int argc, VALUE *argv, VALUE str)
* ''.swapcase! # => nil * ''.swapcase! # => nil
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#swapcase. * Related: String#swapcase.
* *
@ -7473,7 +7473,7 @@ rb_str_swapcase_bang(int argc, VALUE *argv, VALUE str)
* s.swapcase # => "hELLO wORLD!" * s.swapcase # => "hELLO wORLD!"
* *
* The casing may be affected by the given +options+; * The casing may be affected by the given +options+;
* see {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * see {Case Mapping}[case_mapping.rdoc].
* *
* Related: String#swapcase!. * Related: String#swapcase!.
* *
@ -11641,7 +11641,7 @@ sym_casecmp(VALUE sym, VALUE other)
* sym.casecmp?(other_sym) # => nil * sym.casecmp?(other_sym) # => nil
* :foo.casecmp?(2) # => nil * :foo.casecmp?(2) # => nil
* *
* See {Case Mapping}[rdoc-ref:case_mapping.rdoc]. * See {Case Mapping}[case_mapping.rdoc].
* *
* Related: Symbol#casecmp. * Related: Symbol#casecmp.
* *