From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
Date: Mon, 14 Aug 2006 21:31:43 +0000 (+0000)
Subject: Typo fix in the documentation of source filters in @INC
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=60d352b377d9c0ceae058382372d66f2f98f24d1;p=p5sagit%2Fp5-mst-13.2.git

Typo fix in the documentation of source filters in @INC

p4raw-id: //depot/perl@28716
---

diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index ebf107f..8107310 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4546,12 +4546,13 @@ A filehandle, from which the file will be read.
 
 =item 3
 
-A reference to a subroutine. If there is no file handle, then this subroutine
-is expected to generate one line of source code per call, writing the line
-into C<$_> and returning 1, then returning 0 at "end of FILE" If there is a
-file handle then the subroutine will be called to act a simple source filter,
-with the line as read in C<$_>. Again, return 1 for each valid line, and 0
-after all lines have been returned.
+A reference to a subroutine. If there is no filehandle (previous item),
+then this subroutine is expected to generate one line of source code per
+call, writing the line into C<$_> and returning 1, then returning 0 at
+"end of file". If there is a filehandle, then the subroutine will be
+called to act a simple source filter, with the line as read in C<$_>.
+Again, return 1 for each valid line, and 0 after all lines have been
+returned.
 
 =item 4