Subject: | doc typo |
Date: | Sun, 24 Feb 2008 12:32:09 +0100 |
To: | bug-Exporter [...] rt.cpan.org |
From: | Philippe Bricout <philippe.bricout [...] mongueurs.net> |
I think there is a typo in :
http://search.cpan.org/~ferreira/Exporter-5.62c/lib/Exporter.pm
In SYNOPSIS :
use ModuleName qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate
It should be :
use YourModule qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate
(s/ModuleName/YourModule/)
To be coherent, it could be change in "How to import" section too.