Skip Menu |

This queue is for tickets about the GDGraph CPAN distribution.

Maintainer(s)' notes

There are plenty of good ideas of what people can do published here on the queue. Turning a patch from the tracker into a pull request is not one of them. In order to get maintainers' attention way more quickier, PR should have at least a sample included. We know it's hard to test images generating software, but it doesn't mean we can not test numbers produced by intermediate algorithms used to generate these images, so either a test or a sample.

Report information
The Basics
Id: 11631
Status: resolved
Priority: 0/
Queue: GDGraph

People
Owner: bwarfield [...] cpan.org
Requestors: tstock [...] tiago.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.43
Fixed in: 1.4305



Subject: broken POD example
In the POD "USAGE" section of Graph.pm, the example for the set() method starts on the object $graph, but if it fails it tries to get the error() method from a $my_graph object. $graph->set( # lots of stuff ) or die $my_graph->error; replace with: $graph->set( # lots of stuff ) or die $graph->error;