summaryrefslogtreecommitdiff
path: root/hash.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 /hash.c
parente6b537e605381b6f1c9518adbeb6813c5e579df7 (diff)
[DOC] Simplify operator method references
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/hash.c b/hash.c
index ad8ce23e2e..630117ae8a 100644
--- a/hash.c
+++ b/hash.c
@@ -7063,11 +7063,11 @@ static const rb_data_type_t env_data_type = {
*
* ==== Methods for Comparing
*
- * {#<}[#method-i-3C]:: Returns whether +self+ is a proper subset of a given object.
- * {#<=}[#method-i-3C-3D]:: Returns whether +self+ is a subset of a given object.
- * {#==}[#method-i-3D-3D]:: Returns whether a given object is equal to +self+.
- * {#>}[#method-i-3E]:: Returns whether +self+ is a proper superset of a given object
- * {#>=}[#method-i-3E-3D]:: Returns whether +self+ is a proper superset of a given object.
+ * #<:: Returns whether +self+ is a proper subset of a given object.
+ * #<=:: Returns whether +self+ is a subset of a given object.
+ * #==:: Returns whether a given object is equal to +self+.
+ * #>:: Returns whether +self+ is a proper superset of a given object
+ * #>=:: Returns whether +self+ is a proper superset of a given object.
*
* ==== Methods for Fetching
*