From 415f36013fe4c9de8dfeb855b32be7cc6f133046 Mon Sep 17 00:00:00 2001 From: VorTechnix <45538536+VorTechnix@users.noreply.github.com> Date: Tue, 27 Jul 2021 19:56:29 -0700 Subject: [PATCH] comment tweak --- worldeditadditions/utils/strings/split.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldeditadditions/utils/strings/split.lua b/worldeditadditions/utils/strings/split.lua index c271aef..738b56f 100644 --- a/worldeditadditions/utils/strings/split.lua +++ b/worldeditadditions/utils/strings/split.lua @@ -65,7 +65,7 @@ end function worldeditadditions.split (str,dlm,plain) local pos, ret = 0, {} local ins, i = str:find(dlm,pos,plain) - -- if plain shaves off some time in the while statement + -- "if plain" shaves off some time in the while statement if plain then while ins do table.insert(ret,str:sub(pos,ins - 1))