Put single quote instead of double quote

This commit is contained in:
MatteoBiscosi 2022-10-27 13:28:09 +02:00
parent a1c796d461
commit 8118ca742f

View file

@ -140,7 +140,7 @@ end
-- ###################################
local function sub_quotes_to_string(string_to_fix)
return string_to_fix:gsub("%'", "‚")
return string_to_fix:gsub("%'", "‘")
end
-- ###################################