summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-04-24 08:55:25 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-04-24 08:55:25 +0000
commit8870b5c7e468bf26269024a1229e6ad51bcb3798 (patch)
treec39862d02e334793426bc6af647f5365edbee6a5
parent334f17bde01003b370737ba39ab0a63542aca6dc (diff)
downloadperl-8870b5c7e468bf26269024a1229e6ad51bcb3798.tar.gz
pod nits
p4raw-id: //depot/perl@5929
-rw-r--r--pod/perlguts.pod9
1 files changed, 3 insertions, 6 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 7b7b07e8ad..5f1dd21a14 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -1463,13 +1463,13 @@ C<gvsv gvsv add whatever>.
=head2 Compile pass 1: check routines
-The tree is created by the I<pseudo-compiler> while yacc code feeds it
-the constructions it recognizes. Since yacc works bottom-up, so does
+The tree is created by the compiler while I<yacc> code feeds it
+the constructions it recognizes. Since I<yacc> works bottom-up, so does
the first pass of perl compilation.
What makes this pass interesting for perl developers is that some
optimization may be performed on this pass. This is optimization by
-so-called I<check routines>. The correspondence between node names
+so-called "check routines". The correspondence between node names
and corresponding check routines is described in F<opcode.pl> (do not
forget to run C<make regen_headers> if you modify this file).
@@ -1523,9 +1523,6 @@ are subject to the same restrictions as in the pass 2.
=head1 How multiple interpreters and concurrency are supported
-WARNING: This information is subject to radical changes prior to
-the Perl 5.6 release. Use with caution.
-
=head2 Background and PERL_IMPLICIT_CONTEXT
The Perl interpreter can be regarded as a closed box: it has an API