Skip Menu |

This queue is for tickets about the Data-Visitor CPAN distribution.

Report information
The Basics
Id: 111467
Status: new
Priority: 0/
Queue: Data-Visitor

People
Owner: Nobody in particular
Requestors: steven.parker [...] nationwide.com
Cc:
AdminCc:

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



Subject: bug in Data::Visitor
Date: Wed, 27 Jan 2016 15:32:03 -0500
To: bug-Data-Visitor [...] rt.cpan.org
From: steven.parker [...] nationwide.com
In the Description section of your documentation I find: visit_array $array_ref visit_hash $hash_ref visit_glob $glob_ref visit_code $code_ref visit_scalar $scalar_ref These methods are called for the corresponding container type. visit_value $value If the value is anything else, this method is called. The base implementation will return $value. I believe all the references to methods of the form "visit_XXX $XXX_ref " should be "visit_XXX_ref $XXX_ref " ie. visit_array $array_ref should be visit_array_ref $array_ref -Steve