Skip Menu |

This queue is for tickets about the Class-CSV CPAN distribution.

Report information
The Basics
Id: 49822
Status: new
Priority: 0/
Queue: Class-CSV

People
Owner: Nobody in particular
Requestors: wilbert.van.de.pieterman [...] gmail.com
Cc:
AdminCc:

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



CC: david [...] boxen.net
Subject: documentation error
Date: Fri, 18 Sep 2009 17:42:17 -0700
To: bug-Class-CSV [...] rt.cpan.org
From: Wilbert van de Pieterman <wilbert.van.de.pieterman [...] gmail.com>
Hi David, Thanks for making your Class::CSV available. Saved me some valuable time dealing with the CSV format. In your documentation you give an example for removing the first line. pop @lines; $csv->lines(\@lines); This actually removes the last line :-). The example should read: shift @lines; $csv->lines(\@lines); I needed this to remove the field names line in the CSV file. I stumbled upon this bug and thought I'll let you know. Thanks again. Wilbert