Software /
code /
prosody
Diff
util/array.lua @ 12975:d10957394a3c
util: Prefix module imports with prosody namespace
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 17 Mar 2023 16:23:16 +0100 |
parent | 12403:42b2713ab818 |
child | 13032:ea4923bebca9 |
line wrap: on
line diff
--- a/util/array.lua Fri Mar 17 16:23:12 2023 +0100 +++ b/util/array.lua Fri Mar 17 16:23:16 2023 +0100 @@ -8,7 +8,7 @@ local t_insert, t_sort, t_remove, t_concat = table.insert, table.sort, table.remove, table.concat; -local t_move = require "util.table".move; +local t_move = require "prosody.util.table".move; local setmetatable = setmetatable; local getmetatable = getmetatable;