Fixed typo.

This commit is contained in:
Bruce Hill 2018-01-23 15:25:27 -08:00
parent 376dd65278
commit ac8089dd58
2 changed files with 2 additions and 2 deletions

View File

@ -1378,7 +1378,7 @@ do
}
end)
self:define_action("run file %filename", "nomsu.moon", function(_filename)
return nomus:run_file(_filename)
return nomsu:run_file(_filename)
end)
return self:define_compile_action("use %filename", "nomsu.moon", function(_filename)
local filename = nomsu:tree_to_value(_filename)

View File

@ -915,7 +915,7 @@ class NomsuCompiler
expr: repr(nomsu\source_code(nomsu\tree_to_value(_level)))
@define_action "run file %filename", "nomsu.moon", (_filename)->
nomus\run_file(_filename)
nomsu\run_file(_filename)
@define_compile_action "use %filename", "nomsu.moon", (_filename)->
filename = nomsu\tree_to_value(_filename)