In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/a6509d2bd0745438635bad41675dbe33268ebf4f?hp=b6f3718f1b3218256c962a8f46e747048228d196>
- Log ----------------------------------------------------------------- commit a6509d2bd0745438635bad41675dbe33268ebf4f Author: Matthew Horsfall <wolfs...@gmail.com> Date: Mon Nov 13 09:34:02 2017 -0500 Fix sentence in perlobj.pod (missing a word) Reported by geospeck ----------------------------------------------------------------------- Summary of changes: pod/perlobj.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/perlobj.pod b/pod/perlobj.pod index d5d242f3a9..17d6537050 100644 --- a/pod/perlobj.pod +++ b/pod/perlobj.pod @@ -589,7 +589,7 @@ package and method name): my $mp3 = File::MP3->new( 'Regin.mp3', $data ); $mp3->File::save(); -When you a fully qualified method name like C<File::save>, the method +When you call a fully qualified method name like C<File::save>, the method resolution search for the C<save> method starts in the C<File> class, skipping any C<save> method the C<File::MP3> class may have defined. It still searches the C<File> class's parents if necessary. -- Perl5 Master Repository