From de5ef3f2ead34f33be166d99a31ed1ee121767e0 Mon Sep 17 00:00:00 2001 From: TKB Studios <69647028+tkbstudios@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:07:41 +0100 Subject: [PATCH] Maybe fixed linting? --- .../resources/data/computercraft/lua/rom/apis/textutils.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua b/projects/core/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua index c128ce2e6..c483b705a 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua @@ -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)