This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
The 'and' and 'or' ops are hardly 'new' anymore.
authorMatthew O. Persico <matthew.persico@gmail.com>
Mon, 28 Nov 2022 17:15:42 +0000 (12:15 -0500)
committerJames E Keenan <jkeenan@cpan.org>
Mon, 28 Nov 2022 18:35:03 +0000 (18:35 +0000)
Committer: Matthew O. Persico is now a Perl author.

AUTHORS
pod/perlstyle.pod

diff --git a/AUTHORS b/AUTHORS
index b43fb4b..1936f4a 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -926,6 +926,7 @@ Matt Turner                    <mattst88@gmail.com>
 Matthew Black                  <black@csulb.edu>
 Matthew Green                  <mrg@splode.eterna.com.au>
 Matthew Horsfall               <wolfsage@gmail.com>
+Matthew O. Persico             <matthew.persico@gmail.com>
 Matthew Sachs                  <matthewg@zevils.com>
 Matthew T Harden               <mthard@mthard1.monsanto.com>
 Matthias Bethke                <matthias@towiski.de>
index 75d4e0f..750e374 100644 (file)
@@ -225,7 +225,7 @@ Don't use slash as a delimiter when your regexp has slashes or backslashes.
 
 =item *
 
-Use the new C<and> and C<or> operators to avoid having to parenthesize
+Use the C<and> and C<or> operators to avoid having to parenthesize
 list operators so much, and to reduce the incidence of punctuation
 operators like C<&&> and C<||>.  Call your subroutines as if they were
 functions or list operators to avoid excessive ampersands and parentheses.