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