From 7b01753274fbfb2837230eb6ba359596576dba26 Mon Sep 17 00:00:00 2001 From: Kenshin13 <63159154+Kenshiin13@users.noreply.github.com> Date: Wed, 1 Jan 2025 19:54:07 +0100 Subject: [PATCH] fix(es_extended/imports): fix typo --- [core]/es_extended/imports.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[core]/es_extended/imports.lua b/[core]/es_extended/imports.lua index 80f1438a..ea7bf8f3 100644 --- a/[core]/es_extended/imports.lua +++ b/[core]/es_extended/imports.lua @@ -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))