summaryrefslogtreecommitdiff
path: root/pod/perlfaq8.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-08-05 21:57:00 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-08-05 21:57:00 +0000
commit5e3006a4b5e1e97051d365105eeca85fc2884f7b (patch)
tree651c0242eb342eac57c2007c6eb690565ad4c054 /pod/perlfaq8.pod
parentdd9f0070190bd7c99e6ea3d164a54285586358ad (diff)
downloadperl-5e3006a4b5e1e97051d365105eeca85fc2884f7b.tar.gz
pod/perlfaq* update from Tom Christiansen <tchrist@perl.com>
p4raw-id: //depot/maint-5.005/perl@1745
Diffstat (limited to 'pod/perlfaq8.pod')
-rw-r--r--pod/perlfaq8.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod
index e99cf426ca..c4036ff35d 100644
--- a/pod/perlfaq8.pod
+++ b/pod/perlfaq8.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq8 - System Interaction ($Revision: 1.25 $, $Date: 1998/07/05 15:07:20 $)
+perlfaq8 - System Interaction ($Revision: 1.26 $, $Date: 1998/08/05 12:20:28 $)
=head1 DESCRIPTION
@@ -1005,7 +1005,7 @@ Perl offers several different ways to include code from one file into
another. Here are the deltas between the various inclusion constructs:
1) do $file is like eval `cat $file`, except the former:
- 1.1: searches @INC.
+ 1.1: searches @INC and updates %INC.
1.2: bequeaths an *unrelated* lexical scope on the eval'ed code.
2) require $file is like do $file, except the former: