Skip Menu |

This queue is for tickets about the Tie-File CPAN distribution.

Report information
The Basics
Id: 5837
Status: resolved
Priority: 0/
Queue: Tie-File

People
Owner: Nobody in particular
Requestors: T.E.Hofmann [...] gmx.de
Cc:
AdminCc:

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



Subject: Errors in documentation, SYNOPSIS
The SYNOPSIS contains two errors - or at least strong ambiguity - concerning the linenumbers. Now: $array[13] = 'blah'; # line 13 of the file is now 'blah' print $array[42]; # display line 42 of the file Should be: $array[13] = 'blah'; # line 14 of the file is now 'blah' print $array[42]; # display line 43 of the file or maybe even better: $array[0] = 'blah'; # first line of the file is now 'blah' print $array[42]; # display line 43 of the file to make clear that the line numbering starts at 0. The DESCRIPTION clearly states that the line numbers start at 0, but imho the comments in the SYNOPSIS are misleading. Cheers, Torsten
Ticket migrated to github as https://github.com/toddr/Tie-File/issues/2
On Sat Jan 18 22:51:24 2020, TODDR wrote: Show quoted text
> Ticket migrated to github as https://github.com/toddr/Tie-File/issues/2
... which was in turn migrated into the Perl 5 issue queue as: https://github.com/Perl/perl5/issues/17499
On Tue Jan 28 21:59:24 2020, JKEENAN wrote: Show quoted text
> On Sat Jan 18 22:51:24 2020, TODDR wrote:
> > Ticket migrated to github as https://github.com/toddr/Tie-File/issues/2
> > ... which was in turn migrated into the Perl 5 issue queue as: > > https://github.com/Perl/perl5/issues/17499
... and which is now addressed in https://github.com/Perl/perl5/pull/17504 Thank you very much. Jim Keenan