# HG changeset patch # User Matthew Wild # Date 1335362547 -3600 # Node ID e8c35725999368c8ab3b1b120f6953ed2a9cf9fe # Parent 8d275c86a04ff5f0465c15b8e761b2615ca73d7f net.http.server: Small fix to comment diff -r 8d275c86a04f -r e8c357259993 net/http/server.lua --- a/net/http/server.lua Wed Apr 25 14:58:10 2012 +0100 +++ b/net/http/server.lua Wed Apr 25 15:02:27 2012 +0100 @@ -34,7 +34,7 @@ __index = function (handlers, curr_event) if is_wildcard_event(curr_event) then return; end -- Wildcard events cannot be fired -- Find all handlers that could match this event, sort them - -- and then put the array into handlers[event] + -- and then put the array into handlers[curr_event] (and return it) local matching_handlers_set = {}; local handlers_array = {}; for event, handlers_set in pairs(event_map) do