Fix spelling throughout the codebase [codespell]

This commit is contained in:
Kim Alvefur 2018-02-04 01:51:25 +01:00
parent 6f6e04b6c6
commit 3ec060fc0c
17 changed files with 35 additions and 35 deletions

View file

@ -112,9 +112,9 @@ end
-- TODO: optimize
local function apply_mask(str, key, from, to)
from = from or 1
if from < 0 then from = #str + from + 1 end -- negative indicies
if from < 0 then from = #str + from + 1 end -- negative indices
to = to or #str
if to < 0 then to = #str + to + 1 end -- negative indicies
if to < 0 then to = #str + to + 1 end -- negative indices
local key_len = #key
local counter = 0;
local data = {};