mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* string.c (rb_str_cmp_m): fixed rdoc. pointed out by <Thomas
C. Mitchell AT gmail.com> at [ruby-talk:321967] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@20534 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
020bbc997e
commit
8c0efdc182
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Dec 5 10:01:43 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* string.c (rb_str_cmp_m): fixed rdoc. pointed out by <Thomas
|
||||
C. Mitchell AT gmail.com> at [ruby-talk:321967]
|
||||
|
||||
Fri Dec 5 01:19:21 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* pack.c (pack_pack): propagate taint status from format string to
|
||||
|
|
4
string.c
4
string.c
|
@ -1001,8 +1001,8 @@ rb_str_eql(str1, str2)
|
|||
* call-seq:
|
||||
* str <=> other_str => -1, 0, +1
|
||||
*
|
||||
* Comparison---Returns -1 if <i>other_str</i> is less than, 0 if
|
||||
* <i>other_str</i> is equal to, and +1 if <i>other_str</i> is greater than
|
||||
* Comparison---Returns -1 if <i>other_str</i> is greater than, 0 if
|
||||
* <i>other_str</i> is equal to, and +1 if <i>other_str</i> is less than
|
||||
* <i>str</i>. If the strings are of different lengths, and the strings are
|
||||
* equal when compared up to the shortest length, then the longer string is
|
||||
* considered greater than the shorter one. If the variable <code>$=</code> is
|
||||
|
|
Loading…
Add table
Reference in a new issue