r28224 - docs/Perl6/Spec

2009-09-13 Thread pugs-commits
Author: jimmy Date: 2009-09-13 17:23:43 +0200 (Sun, 13 Sep 2009) New Revision: 28224 Modified: docs/Perl6/Spec/S03-operators.pod Log: [Spec/S03-operators.pod]fixed POD format. Modified: docs/Perl6/Spec/S03-operators.pod === ---

r28232 - docs/Perl6/Spec

2009-09-13 Thread pugs-commits
Author: moritz Date: 2009-09-13 19:42:03 +0200 (Sun, 13 Sep 2009) New Revision: 28232 Modified: docs/Perl6/Spec/S05-regex.pod Log: [S05] since \# is forbidden, s/unescaped/unquoted/ Modified: docs/Perl6/Spec/S05-regex.pod === ---

r28233 - docs/Perl6/Spec

2009-09-13 Thread pugs-commits
Author: moritz Date: 2009-09-13 19:42:10 +0200 (Sun, 13 Sep 2009) New Revision: 28233 Modified: docs/Perl6/Spec/S03-operators.pod Log: [S03] ^4 cannot mean 0..3 and 0..^4 at the same time, because they are not the same Modified: docs/Perl6/Spec/S03-operators.pod

r28235 - docs/Perl6/Spec

2009-09-13 Thread pugs-commits
Author: finanalyst Date: 2009-09-13 21:29:01 +0200 (Sun, 13 Sep 2009) New Revision: 28235 Modified: docs/Perl6/Spec/S03-operators.pod Log: clarifying ^4 in a range and including a fractional example Modified: docs/Perl6/Spec/S03-operators.pod

Re: r28233 - docs/Perl6/Spec

2009-09-13 Thread Darren Duncan
pugs-comm...@feather.perl6.nl wrote: Author: moritz Date: 2009-09-13 19:42:10 +0200 (Sun, 13 Sep 2009) New Revision: 28233 Modified: docs/Perl6/Spec/S03-operators.pod Log: [S03] ^4 cannot mean 0..3 and 0..^4 at the same time, because they are not the same The unary C^ operator generates

Re: r28233 - docs/Perl6/Spec

2009-09-13 Thread Darren Duncan
Darren Duncan wrote: I think that it would be better to pick the other meaning of C^4 instead, meaning C0..3, because that keeps the meaning of ^ consistent as up to but not including. Then also saying ^4 means you get a range of 4 elements, so there is that consistency too. Also, the code