Update every link to the documentation to use HTTPS

This commit is contained in:
Emmanuel Gil Peyrot 2016-04-16 21:08:05 +01:00
parent 07cda18b8a
commit c6048a7cb4
21 changed files with 57 additions and 57 deletions

View file

@ -25,7 +25,7 @@ end
local function waiter(num)
local thread = coroutine.running();
if not thread then
error("Not running in an async context, see http://prosody.im/doc/developers/async");
error("Not running in an async context, see https://prosody.im/doc/developers/async");
end
num = num or 1;
local waiting;
@ -48,7 +48,7 @@ local function guarder()
return function (id, func)
local thread = coroutine.running();
if not thread then
error("Not running in an async context, see http://prosody.im/doc/developers/async");
error("Not running in an async context, see https://prosody.im/doc/developers/async");
end
local guard = guards[id];
if not guard then