Skip to content

Commit

Permalink
fix(es_extended/imports): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenshiin13 committed Jan 1, 2025
1 parent 71be624 commit 7b01753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion [core]/es_extended/imports.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 7b01753

Please sign in to comment.