Unverified Commit 55e12757 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5161 from dearblue/ary-splice

Fix documents for `mrb_ary_splice()` [ci skip]
parents c6c18c32 3ac6c3f0
...@@ -249,10 +249,10 @@ MRB_API mrb_value mrb_ary_entry(mrb_value ary, mrb_int offset); ...@@ -249,10 +249,10 @@ MRB_API mrb_value mrb_ary_entry(mrb_value ary, mrb_int offset);
* *
* Equivalent to: * Equivalent to:
* *
* ary.shift * ary[head, len] = rpl
* *
* @param mrb The mruby state reference. * @param mrb The mruby state reference.
* @param self The array from which the value will be shifted. * @param self The array from which the value will be partiality replaced.
* @param head Beginning position of a replacement subsequence. * @param head Beginning position of a replacement subsequence.
* @param len Length of a replacement subsequence. * @param len Length of a replacement subsequence.
* @param rpl The array of replacement elements. * @param rpl The array of replacement elements.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment