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

* string.c: improve docs for String#<=>. [ruby-core:65399][Feature #10322]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ayumin 2015-01-04 04:10:31 +00:00
parent b600ceb898
commit e717341ea6
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Sun Jan 4 13:05:09 2015 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* string.c: improve docs for String#<=>. [ruby-core:65399][Feature #10322]
Patch by gogo tanaka.
Sun Jan 4 12:42:24 2015 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* array.c: improve docs for Array#reject. [ruby-core:65324][misc #10307]

View file

@ -2638,6 +2638,7 @@ rb_str_eql(VALUE str1, VALUE str2)
* "abcdef" <=> "abcdef" #=> 0
* "abcdef" <=> "abcdefg" #=> -1
* "abcdef" <=> "ABCDEF" #=> 1
* "abcdef" <=> 1 #=> nil
*/
static VALUE