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
1 changed files with 3 additions and 3 deletions

View File

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