range.c: [DOC] small improvement

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-07-08 19:30:19 +00:00
Родитель 2a12b82dcd
Коммит e1a8d281eb
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -74,7 +74,7 @@ range_modify(VALUE range)
* Range.new(begin, end, exclude_end=false) -> rng
*
* Constructs a range using the given +begin+ and +end+. If the +exclude_end+
* parameter is omitted or is <code>false</code>, the +rng+ will include
* parameter is omitted or is <code>false</code>, the range will include
* the end object; otherwise, it will be excluded.
*/
@ -766,7 +766,7 @@ range_size(VALUE range)
* rng.to_a -> array
* rng.entries -> array
*
* Returns an array containing the items in <i>rng</i>.
* Returns an array containing the items in the range.
*
* (1..7).to_a #=> [1, 2, 3, 4, 5, 6, 7]
* (1..).to_a #=> RangeError: cannot convert endless range to an array