summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hash.c b/hash.c
index 27b4390345..da85fd35c6 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.
+ * - #<: 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+.
- * - {>}[#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 superset of a given object
+ * - #>=: Returns whether +self+ is a proper superset of a given object.
*
* ==== Methods for Fetching
*