From 9bf5cd83c3cd98002893a72c0fad20026fae4cac Mon Sep 17 00:00:00 2001 From: MorganPeterson Date: Mon, 11 Oct 2021 13:45:31 -0400 Subject: [PATCH] updated string/bytes docs to reflect return value as tuple --- src/core/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/string.c b/src/core/string.c index f082d9cf..cc895bc6 100644 --- a/src/core/string.c +++ b/src/core/string.c @@ -218,7 +218,7 @@ JANET_CORE_FN(cfun_string_repeat, JANET_CORE_FN(cfun_string_bytes, "(string/bytes str)", - "Returns an array of integers that are the byte values of the string.") { + "Returns a tuple of integers that are the byte values of the string.") { janet_fixarity(argc, 1); JanetByteView view = janet_getbytes(argv, 0); Janet *tup = janet_tuple_begin(view.len);