util/pluginloader.lua
changeset 12391 05c250fa335a
parent 12259 a3ad9cf740d6
child 12979 d10957394a3c
--- a/util/pluginloader.lua	Sun Mar 06 15:13:50 2022 +0100
+++ b/util/pluginloader.lua	Mon Mar 07 00:13:56 2022 +0100
@@ -12,7 +12,7 @@
 local plugin_dir = {};
 for path in (CFG_PLUGINDIR or "./plugins/"):gsub("[/\\]", dir_sep):gmatch("[^"..path_sep.."]+") do
 	path = path..dir_sep; -- add path separator to path end
-	path = path:gsub(dir_sep..dir_sep.."+", dir_sep); -- coalesce multiple separaters
+	path = path:gsub(dir_sep..dir_sep.."+", dir_sep); -- coalesce multiple separators
 	plugin_dir[#plugin_dir + 1] = path;
 end