In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/e47f50f38f2d46b5a4015d38875647191b12362b?hp=ae195500577d707783662f4eac70c9edabbb970a>

- Log -----------------------------------------------------------------
commit e47f50f38f2d46b5a4015d38875647191b12362b
Author: Karl Williamson <[email protected]>
Date:   Sun Sep 2 07:59:45 2018 -0600

    PATCH: [perl #133488] Fix grammer in perlfunc sysread()
    
    Spotted by Axel Beckert

-----------------------------------------------------------------------

Summary of changes:
 pod/perlfunc.pod | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index b55068f1f9..a2fad3b8fc 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -8721,7 +8721,7 @@ bytes before the result of the read is appended.
 There is no syseof() function, which is ok, since
 L<C<eof>|/eof FILEHANDLE> doesn't work well on device files (like ttys)
 anyway.  Use L<C<sysread>|/sysread FILEHANDLE,SCALAR,LENGTH,OFFSET> and
-check for a return value for 0 to decide whether you're done.
+check for a return value of 0 to decide whether you're done.
 
 Note that if the filehandle has been marked as C<:utf8>, Unicode
 characters are read instead of bytes (the LENGTH, OFFSET, and the

-- 
Perl5 Master Repository

Reply via email to