# HG changeset patch # User Kim Alvefur # Date 1333492662 -7200 # Node ID 0d3174d5a1cc398246319e1703ecd6967814ff0e # Parent dcb8e7d2c7113ed506bd4cf3531374c9262a1aee mod_pubsub_feed: Fix typos diff -r dcb8e7d2c711 -r 0d3174d5a1cc mod_pubsub_feed/mod_pubsub_feed.lua --- 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