Software /
code /
prosody-modules
Changeset
633:0d3174d5a1cc
mod_pubsub_feed: Fix typos
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 04 Apr 2012 00:37:42 +0200 |
parents | 632:dcb8e7d2c711 |
children | 634:061584efe82f |
files | mod_pubsub_feed/mod_pubsub_feed.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_pubsub_feed/mod_pubsub_feed.lua Thu Mar 29 10:32:40 2012 +0800 +++ b/mod_pubsub_feed/mod_pubsub_feed.lua Wed Apr 04 00:37:42 2012 +0200 @@ -41,7 +41,7 @@ local feed_list = {}; local refresh_interval; --- Dynamicaly reloadable config. +-- Dynamically reloadable config. local function update_config() local config = module:get_option("feeds") or { planet_jabber = "http://planet.jabber.org/atom.xml"; @@ -227,7 +227,7 @@ feed.subscription = "subscribe"; http.request(feed.hub, { body = body }, function(data, code, req) local code = tostring(code); - module:log("debug", "subscription to %s submitted, staus %s", feed.node, code); + module:log("debug", "subscription to %s submitted, status %s", feed.node, code); end); end