From c17e8adb809d5618f2b803d0e01f48b37dc626fa Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Fri, 17 Mar 2023 02:10:41 +0200 Subject: [PATCH] Correct typos in init.lua --- plugin/Trans.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 6cf5eaf..89cd720 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -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