Software /
code /
prosody
Changeset
8963:ff522d5db95d
mod_ping: Fix typo
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 02 Jul 2018 23:51:19 +0200 |
parents | 8962:6c06bd455bbf |
children | 8964:76780f37028d |
files | plugins/mod_ping.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_ping.lua Mon Jul 02 23:42:00 2018 +0200 +++ b/plugins/mod_ping.lua Mon Jul 02 23:51:19 2018 +0200 @@ -26,7 +26,7 @@ return { info = "Pong\n"..now, status = "completed" }; end -module:depend "adhoc"; +module:depends "adhoc"; local adhoc_new = module:require "adhoc".new; local descriptor = adhoc_new("Ping", "ping", ping_command_handler); module:add_item ("adhoc", descriptor);