<!-- Note: Bugs in the perldoc program itself should be reported to the CPAN module maintainer via the bug tracker listed on https://metacpan.org/pod/Pod::Perldoc --> **Where** <!-- What module, script or perldoc URL needs to be fixed? --> perlfinc **Description** <!-- Please describe the documentation issue here. --> ``` perldoc -f map ``` shows ``` my @chars = map(chr, @numbers); ``` Maybe this also could be mentioned: ``` $ perl -wle 'for(qw/A B C/){print map((ord)-64,$_)};' 1 2 3 ``` Or maybe something like it is mentioned already.