Skip Menu |

This queue is for tickets about the Sort-Key CPAN distribution.

Report information
The Basics
Id: 74221
Status: resolved
Worked: 30 min
Priority: 0/
Queue: Sort-Key

People
Owner: Nobody in particular
Requestors: fschlich [...] zedat.fu-berlin.de
Cc:
AdminCc:

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



Subject: spelling errors in pod
Hi, while packaging Sort::Key for Debian, our qa tools called my attention to the following pod typos: --- a/lib/Sort/Key.pm +++ b/lib/Sort/Key.pm @@ -247,7 +247,7 @@ @sorted = sort { CALC_KEY($a) cmp CALC_KEY($b) } @data -and where C<CALC_KEY($_)> can be any expresion to extract the key +and where C<CALC_KEY($_)> can be any expression to extract the key value from C<$_> (not only a subroutine call). For instance, some variations are C<nkeysort> that performs a numeric --- a/lib/Sort/Key/Natural.pm +++ b/lib/Sort/Key/Natural.pm @@ -69,7 +69,7 @@ This module extends the L<Sort::Key> family of modules to support natural sorting. -Under natural sorting, strings are splitted at word and number +Under natural sorting, strings are split at word and number boundaries, and the resulting substrings are compared as follows: =over 4 --- a/lib/Sort/Key/Register.pm +++ b/lib/Sort/Key/Register.pm @@ -40,7 +40,7 @@ =head1 DESCRIPTION -Sort::Key::Register allows to register new data types with Sort::Key +Sort::Key::Register allows one to register new data types with Sort::Key so that they can be sorted as natively supported ones. It works as a pragma module and doesn't export any function, all its Florian