From: Tyler Riddle Date: Thu, 6 Sep 2012 20:15:23 +0000 (-0700) Subject: replace camelcase variable name X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=04d2c85924a0aef7be38fb2a2deb739f43632e87;p=scpubgit%2FSystem-Introspector.git replace camelcase variable name --- diff --git a/lib/System/Introspector/Gatherer.pm b/lib/System/Introspector/Gatherer.pm index 92ef512..f9359ea 100644 --- a/lib/System/Introspector/Gatherer.pm +++ b/lib/System/Introspector/Gatherer.pm @@ -28,12 +28,12 @@ sub gather_all { my ($base, $args) = @$spec; my $module = "System::Introspector::Probe::$base"; log_debug { "Using '$module' for this gather" }; - my $moduleName = use_module($module); - log_trace { "Finished loading '$module'; returned value was '$moduleName'" }; - my $instance = $moduleName->new($args); - log_trace { "Finished constructing '$moduleName'" }; + my $module_name = use_module($module); + log_trace { "Finished loading '$module'; returned value was '$module_name'" }; + my $instance = $module_name->new($args); + log_trace { "Finished constructing '$module_name'" }; $report{$base} = $instance->gather; - log_trace { "Finished invocation of '$moduleName->gather()'" }; + log_trace { "Finished invocation of '$module_name->gather()'" }; } log_trace { "gather_all() has completed" };