[DOC] Simplify operator method references

This commit is contained in:
Nobuyoshi Nakada 2022-02-11 10:30:28 +09:00
parent e6b537e605
commit 50c972a1ae
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
10 changed files with 78 additions and 85 deletions

View file

@ -1587,8 +1587,8 @@ rb_struct_dig(int argc, VALUE *argv, VALUE self)
*
* === Methods for Comparing
*
* {#==}[#method-i-3D-3D]:: Returns whether a given object is equal to +self+,
* using <tt>==</tt> to compare member values.
* #==:: Returns whether a given object is equal to +self+, using <tt>==</tt>
* to compare member values.
* #eql?:: Returns whether a given object is equal to +self+,
* using <tt>eql?</tt> to compare member values.
*