summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-06 04:09:04 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-06 04:09:04 +0000
commit8a4de7abf8850f330f9201fb07aba16a622d1fd2 (patch)
tree4883ff06a9cb89aa95db4a8060e4fe95eb14f1da /string.c
parentdd9569ded88cf09e20a8ba9e341dc7236c12d73c (diff)
* string.c (rb_str_aref): Improve rdoc, as per [bug #6106]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/string.c b/string.c
index dd4e3674b0..6355070324 100644
--- a/string.c
+++ b/string.c
@@ -3198,12 +3198,11 @@ rb_str_aref(VALUE str, VALUE indx)
* Element Reference---If passed a single <code>Fixnum</code>, returns a
* substring of one character at that position. If passed two <code>Fixnum</code>
* objects, returns a substring starting at the offset given by the first, and
- * a length given by the second. If given a range, a substring containing
- * characters at offsets given by the range is returned. In all three cases, if
- * an offset is negative, it is counted from the end of <i>str</i>. Returns
- * <code>nil</code> if the initial offset falls outside the string, the length
- * is negative, or the beginning of the range is greater than the end of the
- * string.
+ * with a length given by the second. If passed a range, its beginning and end
+ * are interpreted as offsets delimiting the substring to be returned. In all
+ * three cases, if an offset is negative, it is counted from the end of <i>str</i>.
+ * Returns <code>nil</code> if the initial offset falls outside the string or
+ * the length is negative.
*
* If a <code>Regexp</code> is supplied, the matching portion of <i>str</i> is
* returned. If a numeric or name parameter follows the regular expression, that
@@ -3214,12 +3213,13 @@ rb_str_aref(VALUE str, VALUE indx)
*
* a = "hello there"
* a[1] #=> "e"
- * a[1,3] #=> "ell"
- * a[1..3] #=> "ell"
- * a[-3,2] #=> "er"
+ * a[2, 3] #=> "llo"
+ * a[2..3] #=> "ll"
+ * a[-3, 2] #=> "er"
+ * a[7..-2] #=> "her"
* a[-4..-2] #=> "her"
- * a[12..-1] #=> nil
* a[-2..-4] #=> ""
+ * a[12..-1] #=> nil
* a[/[aeiou](.)\1/] #=> "ell"
* a[/[aeiou](.)\1/, 0] #=> "ell"
* a[/[aeiou](.)\1/, 1] #=> "l"