Correct typos in init.lua

This commit is contained in:
Felix Yan 2023-03-17 02:10:41 +02:00
parent 75fdfc6880
commit c17e8adb80
No known key found for this signature in database
GPG Key ID: 786C63F330D7CB92

View File

@ -15,8 +15,8 @@ elseif fn.has('mac') == 1 then
end
else
string.play = function(self)
local seperator = fn.has('unix') and '/' or '\\'
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
local separator = fn.has('unix') and '/' or '\\'
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. separator .. 'tts' .. separator .. 'say.js'
fn.jobstart('node ' .. file .. ' ' .. self)
end
end