trunk

changeset 5077:6c2c8bf36d22

moduleapi: Clarify comment
author Matthew Wild <mwild1@gmail.com>
date Fri, 03 Aug 2012 14:07:41 +0100
parents 88fb94df9b18
children cba0b426b542 c0c060e450be
files core/moduleapi.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/core/moduleapi.lua	Thu Aug 02 21:42:00 2012 +0200
     1.2 +++ b/core/moduleapi.lua	Fri Aug 03 14:07:41 2012 +0100
     1.3 @@ -125,7 +125,7 @@
     1.4  	local mod = modulemanager.get_module(self.host, name) or modulemanager.get_module("*", name);
     1.5  	if mod and mod.module.host == "*" and self.host ~= "*"
     1.6  	and modulemanager.module_has_method(mod, "add_host") then
     1.7 -		mod = nil; -- This is a shared module, so we still want to load it on our host
     1.8 +		mod = nil; -- Target is a shared module, so we still want to load it on our host
     1.9  	end
    1.10  	if not mod then
    1.11  		local err;