Skip to content

Commit

Permalink
[DOC] Correct docs for Comparable
Browse files Browse the repository at this point in the history
  • Loading branch information
waiwaing committed Apr 9, 2023
1 parent 038f9ad commit 917e7eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compar.c
Expand Up @@ -289,8 +289,8 @@ cmp_clamp(int argc, VALUE *argv, VALUE x)
* - #<: 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.
* - #>: Returns whether +self+ is greater than or equal to the given object.
* - #>=: Returns whether +self+ is greater than the given object.
* - #>: Returns whether +self+ is greater than the given object.
* - #>=: Returns whether +self+ is greater than or equal to 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:
*
Expand Down

0 comments on commit 917e7eb

Please sign in to comment.