diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-02-15 00:39:25 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-02-15 00:39:25 +0000 |
commit | d4cf669da7e01b4d237cddd1f1c0856bd82d1cbb (patch) | |
tree | 39ec8eda03b357c09ac0511d799d100b4cfce7f7 /range.c | |
parent | 2568fd774baa8f26eeb9d36b01f2f907dc498ef3 (diff) | |
download | ruby-d4cf669da7e01b4d237cddd1f1c0856bd82d1cbb.tar.gz |
Range#bsearch: fix typo in rdoc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'range.c')
-rw-r--r-- | range.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |