Subject: | Minor typo in documentation |
Date: | Wed, 15 Apr 2020 07:16:46 +0300 |
To: | bug-Exporter-Easy [...] rt.cpan.org |
From: | Alexander Karelas <alex.karelas [...] gmail.com> |
Here https://metacpan.org/pod/Exporter::Easy#TAGS it says: "|some|
contains the symbols from all but with |open| removed and all the
symbols from |hash| removed."
But the code right above shows:
|TAGS| |=> [|
| ||file| |=> [ ||'open'||, ||'close'||, ||'read'||, ||'write'||],|
| ||string| |=> [ ||'length'||, ||'substr'||, ||'chomp'| |],|
| ||hash| |=> [ ||'keys'||, ||'values'||, ||'each'| |],|
| ||all| |=> [ ||':file'||, ||':string'||, ||':hash'| |],|
| ||some| |=> [||':all'||, ||'!open'||, ||':hash'||],|
|]|
||
|Look at 'some'. The ':hash' string there does not contain an
exclamation mark. So is it removed as the POD says? |