From a2588c1fb8d1c0e2bac4d4c6f1a5234c260938a1 Mon Sep 17 00:00:00 2001 From: cryptosdarius-star Date: Sat, 25 Jul 2026 03:29:49 +0200 Subject: [PATCH] fix(array): correct 'seperated'/'seperator' typo in join doc comment and param name --- imports/array/shared.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/imports/array/shared.lua b/imports/array/shared.lua index ae2aceafa..837289bda 100644 --- a/imports/array/shared.lua +++ b/imports/array/shared.lua @@ -216,10 +216,10 @@ function lib.array:includes(element, fromIndex) return false end ----Concatenates all array elements into a string, seperated by commas or the specified seperator. ----@param seperator? string -function lib.array:join(seperator) - return table_concat(self, seperator or ',') +---Concatenates all array elements into a string, separated by commas or the specified separator. +---@param separator? string +function lib.array:join(separator) + return table_concat(self, separator or ',') end ---Create a new array containing the results from calling the provided function on every element in an array.