Codebase list libdata-visitor-perl / 2c9dd3e
typo fixes David Steinbrunner 10 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
347347
348348 =item tied_as_objects
349349
350 Whether ot not to visit the L<perlfunc/tied> of a tied structure instead of
350 Whether or not to visit the L<perlfunc/tied> of a tied structure instead of
351351 pretending the structure is just a normal one.
352352
353353 See L<Data::Visitor/visit_tied>.
403403 delegate to C<visit_ref>, you can specify C<visit_ref> as the callback for
404404 C<object> in order to enter objects.
405405
406 It is reccomended that you specify the classes (or base classes) you want
406 It is recommended that you specify the classes (or base classes) you want
407407 though, instead of just visiting any object forcefully.
408408
409409 =item Some::Class
410410
411 You can use any class name as a callback. This is colled only after the
411 You can use any class name as a callback. This is called only after the
412412 C<object> callback.
413413
414414 If the object C<isa> the class then the callback will fire.