diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | string.c | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,8 @@ +Thu Dec 21 15:37:17 2006 Yukihiro Matsumoto <[email protected]> + + * string.c (rb_str_slice_bang): rdoc description bug fixed. + [ruby-core:09754] + Thu Dec 21 15:32:19 2006 Yukihiro Matsumoto <[email protected]> * lib/cgi.rb (CGI::Cookie::initialize): option["value"] may or may @@ -1935,10 +1935,7 @@ rb_str_insert(VALUE str, VALUE idx, VALUE str2) * str.slice!(other_str) => new_str or nil * * Deletes the specified portion from <i>str</i>, and returns the portion - * deleted. The forms that take a <code>Fixnum</code> will raise an - * <code>IndexError</code> if the value is out of range; the <code>Range</code> - * form will raise a <code>RangeError</code>, and the <code>Regexp</code> and - * <code>String</code> forms will silently ignore the assignment. + * deleted. * * string = "this is a string" * string.slice!(2) #=> 105 |