summaryrefslogtreecommitdiff
path: root/compar.c
diff options
context:
space:
mode:
Diffstat (limited to 'compar.c')
-rw-r--r--compar.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/compar.c b/compar.c
index 6ee4c2c3fa..9f47a3fa62 100644
--- a/compar.c
+++ b/compar.c
@@ -288,15 +288,11 @@ cmp_clamp(int argc, VALUE *argv, VALUE x)
*
* \Module \Comparable provides these methods, all of which use method <tt><=></tt>:
*
- * - {<}[Comparable.html#method-i-3C]:
- * Returns whether +self+ is less than the given object.
- * - {<=}[Comparable.html#method-i-3C-3D]:
- * Returns whether +self+ is less than or equal to the given object.
+ * - #<: Returns whether +self+ is less than the given object.
+ * - #<=: Returns whether +self+ is less than or equal to the given object.
* - #==: Returns whether +self+ is equal to the given object.
- * - {>}[Comparable.html#method-i-3E]:
- * Returns whether +self+ is greater than or equal to the given object.
- * - {>=}[Comparable.html#method-i-3E-3D]:
- * Returns whether +self+ is greater than the given object.
+ * - #>: Returns whether +self+ is greater than or equal to the given object.
+ * - #>=: Returns whether +self+ is greater than the given object.
* - #between?: Returns +true+ if +self+ is between two given objects.
* - #clamp: For given objects +min+ and +max+, or range <tt>(min..max)</tt>, returns:
*