Skip to content

Commit c43d9be

Browse files
committed
Minor tweak on API docs
1 parent 7558c6a commit c43d9be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api.EN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ Accepts a number `idx`, a value `x`, an array or a string `xs`, and returns a sh
13271327
insert(0, 20, []) //=> [20]
13281328
insert(0, 20, '') //=> '20'
13291329
insert(2, 20, range(1, 5, 1)) //=> [1, 2, 20, 3, 4]
1330-
insert(2)(20)(range(1)(6)(1)) //=> [1, 2, 20, 3, 4]
1330+
insert(2)(20)(range(1)(5)(1)) //=> [1, 2, 20, 3, 4]
13311331
insert(3, '-', 'foobar') //=> 'foo-bar'
13321332
insert(3)('-')('foobar') //=> 'foo-bar'
13331333
```

0 commit comments

Comments
 (0)