POD nit by Yitzchak
Rafael Garcia-Suarez [Tue, 27 Sep 2005 20:04:07 +0000 (20:04 +0000)]
p4raw-id: //depot/perl@25624

pod/perlfunc.pod

index 8054abb..5f7fd73 100644 (file)
@@ -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) = @_;