summaryrefslogtreecommitdiff
path: root/struct.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-11 10:30:28 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-12 12:38:36 +0900
commit50c972a1ae1b15b292f45e78ff3227644f3cabda (patch)
tree294a94a2e5ba8326a3a313293e319458a7010e28 /struct.c
parente6b537e605381b6f1c9518adbeb6813c5e579df7 (diff)
[DOC] Simplify operator method references
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/struct.c b/struct.c
index 0fd54591e8..8b19266e62 100644
--- a/struct.c
+++ b/struct.c
@@ -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.
*