This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix some comments in perly.y
authorDave Mitchell <davem@fdisolutions.com>
Fri, 26 Mar 2004 01:24:24 +0000 (01:24 +0000)
committerDave Mitchell <davem@fdisolutions.com>
Fri, 26 Mar 2004 01:24:24 +0000 (01:24 +0000)
p4raw-id: //depot/perl@22592

perly.y

diff --git a/perly.y b/perly.y
index f4a8344..9224537 100644 (file)
--- a/perly.y
+++ b/perly.y
@@ -648,7 +648,7 @@ term        :       termbinop
                        { $$ = newUNOP(OP_NOT, 0, scalar($2)); }
        |       UNIOP                                /* Unary op, $_ implied */
                        { $$ = newOP($1, 0); }
-       |       UNIOP block                          /* eval { foo }, I *think* */
+       |       UNIOP block                          /* eval { foo } */
                        { $$ = newUNOP($1, 0, $2); }
        |       UNIOP term                           /* Unary op */
                        { $$ = newUNOP($1, 0, $2); }
@@ -666,9 +666,9 @@ term        :       termbinop
                        { $$ = newOP($1, OPf_SPECIAL); }
        |       FUNC1 '(' expr ')'                   /* not($foo) */
                        { $$ = newUNOP($1, 0, $3); }
-       |       PMFUNC '(' term ')'                  /* split (/foo/) */
+       |       PMFUNC '(' term ')'                  /* /foo/ */
                        { $$ = pmruntime($1, $3, Nullop); }
-       |       PMFUNC '(' term ',' term ')'         /* split (/foo/,$bar) */
+       |       PMFUNC '(' term ',' term ')'         /* s/foo/bar/ (or tr) */
                        { $$ = pmruntime($1, $3, $5); }
        |       WORD
        |       listop