1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Range#bsearch: fix typo in rdoc

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2014-02-15 00:39:25 +00:00
parent 2568fd774b
commit d4cf669da7

View file

@ -539,7 +539,7 @@ is_integer_p(VALUE v)
*
* - the block returns false for any value which is less than x, and
* - the block returns true for any value which is greater than or
* equal to i.
* equal to x.
*
* If x is within the range, this method returns the value x.
* Otherwise, it returns nil.