From c509005ddc1f65fdcac437a4e6655c834893551c Mon Sep 17 00:00:00 2001 From: Karen Etheridge Date: Mon, 10 Feb 2020 11:48:07 -0800 Subject: [PATCH] improve pod formatting and minor punctuation nit --- pod/perl5313delta.pod | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pod/perl5313delta.pod b/pod/perl5313delta.pod index 82c718950318..f0bd94347add 100644 --- a/pod/perl5313delta.pod +++ b/pod/perl5313delta.pod @@ -16,13 +16,13 @@ L, which describes differences between 5.31.1 and 5.31.2. =head2 Plain "0" string now treated as a number for range operator -Previously a range C< "0" .. "-1" > would produce a range of numeric -strings from "0" through "99", this now produces an empty list, just -as C< 0 .. -1 > does. +Previously a range C<"0" .. "-1"> would produce a range of numeric +strings from "0" through "99"; this now produces an empty list, just +as C<0 .. -1> does. This was due to a special case that treated strings starting with "0" -as strings so ranges like C< "00" .. "03" > produced C< "00", "01", -"02", "03" >, but didn't specially handle the string C<"0">. +as strings so ranges like C<"00" .. "03"> produced C<"00", "01", "02", "03">, +but didn't specially handle the string C<"0">. [perl #133695]