Subject: | Documentation Bug |
In version 2.32, the module was changed so that the ParseConfig function
needs to be imported implicitly. This change isn't reflected in the code
example in the Synopsis.
use Config::General;
my %config = ParseConfig("rcfile");
This should be
use Config::General qw(ParseConfig);
my %config = ParseConfig("rcfile");