fix(es_extended/imports): fix typo

This commit is contained in:
Kenshin13
2025-01-01 19:54:07 +01:00
parent 71be624697
commit 7b01753274
+1 -1
View File
@@ -71,7 +71,7 @@ end
---@param modulePath string
---@return any
function require(modulePath)
assert(type(modulePath) == "string", "Module name must be a string")
assert(type(modulePath) == "string", "Module path must be a string")
if loadingModules[modulePath] then
error(("Circular dependency detected for module '%s'."):format(modulePath))