1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-17 02:40:00 +00:00

Merge pull request #1287 from pepe/fix-arr-push-doc

Document array/push variadic argument
This commit is contained in:
Calvin Rose 2023-09-12 07:07:42 -07:00 committed by GitHub
commit ff18b92eb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,8 +177,8 @@ JANET_CORE_FN(cfun_array_peek,
} }
JANET_CORE_FN(cfun_array_push, JANET_CORE_FN(cfun_array_push,
"(array/push arr x)", "(array/push arr & xs)",
"Insert an element in the end of an array. Modifies the input array and returns it.") { "Push all the elements of xs to the end of an array. Modifies the input array and returns it.") {
janet_arity(argc, 1, -1); janet_arity(argc, 1, -1);
JanetArray *array = janet_getarray(argv, 0); JanetArray *array = janet_getarray(argv, 0);
if (INT32_MAX - argc + 1 <= array->count) { if (INT32_MAX - argc + 1 <= array->count) {