In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/000aab206ed911bf00a5ce23de4e642f401b9871?hp=e784ce68771fb02040c29dabd979f28734f81668>

- Log -----------------------------------------------------------------
commit 000aab206ed911bf00a5ce23de4e642f401b9871
Author: Tony Cook <[email protected]>
Date:   Wed Apr 13 09:39:27 2016 +1000

    fix IO::Handle documentation mangled by a manually applied patch
-----------------------------------------------------------------------

Summary of changes:
 dist/IO/lib/IO/Handle.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dist/IO/lib/IO/Handle.pm b/dist/IO/lib/IO/Handle.pm
index aebf74e..ce976b0 100644
--- a/dist/IO/lib/IO/Handle.pm
+++ b/dist/IO/lib/IO/Handle.pm
@@ -122,8 +122,8 @@ otherwise.
 This works like <$io> described in L<perlop/"I/O Operators">
 except that it's more readable and can be safely called in a
 list context but still returns just one line.  If used as the conditional
-+within a C<while> or C-style C<for> loop, however, you will need to
-+emulate the functionality of <$io> with C<< defined($_ = $io->getline) >>.
+within a C<while> or C-style C<for> loop, however, you will need to
+emulate the functionality of <$io> with C<< defined($_ = $io->getline) >>.
 
 =item $io->getlines
 
@@ -271,7 +271,7 @@ use IO ();  # Load the XS module
 require Exporter;
 @ISA = qw(Exporter);
 
-$VERSION = "1.35";
+$VERSION = "1.36";
 $VERSION = eval $VERSION;
 
 @EXPORT_OK = qw(

--
Perl5 Master Repository

Reply via email to