summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-09-27 20:04:07 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-09-27 20:04:07 +0000
commit362eead3a268d127e89be572afb78c2557c1c3ad (patch)
tree3201aa2bbf0ae25f7db50d0bfea8299457d4838d
parent642d0c2f60eb696d18d53486a98f0b8807f335a2 (diff)
downloadperl-362eead3a268d127e89be572afb78c2557c1c3ad.tar.gz
POD nit by Yitzchak
p4raw-id: //depot/perl@25624
-rw-r--r--pod/perlfunc.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 8054abb6eb..5f7fd7331b 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4298,10 +4298,10 @@ version should be used instead.
require 5.6.1; # ditto
require 5.006_001; # ditto; preferred for backwards compatibility
-Otherwise, C<ref> demands that a library file be included if it hasn't already
-been included. The file is included via the do-FILE mechanism, which is
-essentially just a variety of C<eval>. Has semantics similar to the
-following subroutine:
+Otherwise, C<require> demands that a library file be included if it
+hasn't already been included. The file is included via the do-FILE
+mechanism, which is essentially just a variety of C<eval>. Has
+semantics similar to the following subroutine:
sub require {
my ($filename) = @_;