Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Exporter CPAN distribution.

Report information
The Basics
Id: 33546
Status: resolved
Priority: 0/
Queue: Exporter

People
Owner: ferreira [...] shoo.cpan.org
Requestors: philippe.bricout [...] mongueurs.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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.
On Sun Feb 24 06:32:41 2008, philippe.bricout@mongueurs.net wrote: Show quoted text
> > 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. > >
That was really a documentation bug at Exporter, that should be hopefully fixed at Exporter 5.63. Thanks, Adriano.