diff --git a/ChangeLog b/ChangeLog index e5c702d967..c8736b456c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Nov 4 12:33:44 2014 SHIBATA Hiroshi + + * object.c: fix document of Kernel.Stirng by @suzukaze + [fix GH-743][ci skip] + Tue Nov 4 12:21:45 2014 SHIBATA Hiroshi * lib/csv.rb: added documentation for skip_blanks option by @decasia diff --git a/object.c b/object.c index f330aeeab5..5834c81e74 100644 --- a/object.c +++ b/object.c @@ -3018,8 +3018,9 @@ rb_String(VALUE val) * call-seq: * String(arg) -> string * - * Converts arg to a String by calling its - * to_s method. + * Returns arg as an String. + * + * First tries to call its to_str method, then its to_s method. * * String(self) #=> "main" * String(self.class) #=> "Object"