diff --git a/ChangeLog b/ChangeLog index 527d4b53f0..db2e16b428 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Dec 5 10:01:43 2008 Nobuyoshi Nakada + + * string.c (rb_str_cmp_m): fixed rdoc. pointed out by at [ruby-talk:321967] + Fri Dec 5 01:19:21 2008 Yukihiro Matsumoto * pack.c (pack_pack): propagate taint status from format string to diff --git a/string.c b/string.c index dfaf8c0228..9c55ce618c 100644 --- a/string.c +++ b/string.c @@ -1001,8 +1001,8 @@ rb_str_eql(str1, str2) * call-seq: * str <=> other_str => -1, 0, +1 * - * Comparison---Returns -1 if other_str is less than, 0 if - * other_str is equal to, and +1 if other_str is greater than + * Comparison---Returns -1 if other_str is greater than, 0 if + * other_str is equal to, and +1 if other_str is less than * str. 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 $= is