Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

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

Report information
The Basics
Id: 90630
Status: resolved
Priority: 0/
Queue: Sort-MultipleFields

People
Owner: Nobody in particular
Requestors: michael.jemmeson [...] gmail.com
Cc:
AdminCc:

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



Subject: Incorrect formatting in POD
The less-than/greater-than signs in the spaceship operator in the POD need escaping. Patch attached for lib/Sort/MultipleFields.pm
Subject: Sort-MultipleFields-pod.patch
--- lib/Sort/MultipleFields.pm 2008-07-28 22:51:05.000000000 +0100 +++ lib/Sort/MultipleFields.pm.new 2013-11-22 15:14:47.552898256 +0000 @@ -101,11 +101,11 @@ =item numascending, or numasc -Sort numerically, ascending (ie C<$a <=> $b>) +Sort numerically, ascending (ie C<< $a <=> $b >>) =item numdescending, or numdesc -Sort numerically, descending (ie C<$b <=> $a>) +Sort numerically, descending (ie C<< $b <=> $a >>) =back
On Fri Nov 22 10:22:39 2013, mjemmeson wrote: Show quoted text
> The less-than/greater-than signs in the spaceship operator in the POD > need escaping. > > Patch attached for lib/Sort/MultipleFields.pm
Thanks, applied.