Skip to content

Commit 8b65eed

Browse files
authored
Improve table.move documentation
1 parent d3f719c commit 8b65eed

File tree

1 file changed

+3
-2
lines changed
  • content/en-us/reference/engine/libraries

1 file changed

+3
-2
lines changed

content/en-us/reference/engine/libraries/table.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,9 @@ functions:
344344
summary: |
345345
Copies the specified range of elements from one table to another.
346346
description: |
347-
Copies elements from table `src` into table `dst`. Is equivalent to the
348-
multiple assignment statement: `dst[t], ... = src[a], ..., src[b]`.
347+
Copies elements in table `src` from `src[a]` up to `src[b]` into table
348+
`dst` starting at `t`. Equivalent to the statement
349+
`dst[t], ..., dst[t + (b - a)] = src[a], ..., src[b]`.
349350
350351
The default for `dst` is `src`. The destination range may overlap with the
351352
source range.

0 commit comments

Comments
 (0)