mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
Fix spelling throughout the codebase [codespell]
This commit is contained in:
parent
6f6e04b6c6
commit
3ec060fc0c
17 changed files with 35 additions and 35 deletions
|
@ -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 = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue