1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-07-05 19:42:54 +00:00

Maybe fixed linting?

This commit is contained in:
TKB Studios 2024-03-28 13:07:41 +01:00 committed by GitHub
parent 34b0c6737e
commit de5ef3f2ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -940,10 +940,10 @@ function urlEncode(str)
return str return str
end end
--- Splits a string in a table --- Splits a string in a table.
-- --
-- @tparam string string_to_split The string to split -- @tparam string string_to_split The string to split.
-- @tparam string pattern At what character/pattern to split the string -- @tparam string pattern At what pattern to split the string.
-- @treturn table A table containing the splitted strings. -- @treturn table A table containing the splitted strings.
-- @usage args = textutils.splitString("arg1 arg2", " ") -- @usage args = textutils.splitString("arg1 arg2", " ")
-- @since edit this if it goes live (I hope it does) -- @since edit this if it goes live (I hope it does)