summaryrefslogtreecommitdiff
path: root/pod/perlobj.pod
diff options
context:
space:
mode:
authorMatthew Horsfall <wolfsage@gmail.com>2017-11-13 09:34:02 -0500
committerMatthew Horsfall <wolfsage@gmail.com>2017-11-13 09:34:02 -0500
commita6509d2bd0745438635bad41675dbe33268ebf4f (patch)
tree43eb45840a6e2fb57228d0c9848f772a29906182 /pod/perlobj.pod
parentb6f3718f1b3218256c962a8f46e747048228d196 (diff)
downloadperl-a6509d2bd0745438635bad41675dbe33268ebf4f.tar.gz
Fix sentence in perlobj.pod (missing a word)
Reported by geospeck
Diffstat (limited to 'pod/perlobj.pod')
-rw-r--r--pod/perlobj.pod2
1 files changed, 1 insertions, 1 deletions
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.