fix(filesystem): write_file call param position
This commit is contained in:
parent
c47b7a1962
commit
e0f61e1699
|
@ -15,7 +15,7 @@ end
|
|||
local module = {}
|
||||
|
||||
function module.write(file_content: string, file_path: string)
|
||||
local success, error_message = write_file(file_path, file_content)
|
||||
local success, error_message = write_file(file_content, file_path)
|
||||
|
||||
if not success then
|
||||
log:error {
|
||||
|
|
Loading…
Reference in New Issue