In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/b166eea9cd004d916f7322015c1c4337c549ac08?hp=c782dc1db597b30ceb55455cfa926e7c4b620944>
- Log ----------------------------------------------------------------- commit b166eea9cd004d916f7322015c1c4337c549ac08 Author: Dave Rolsky <[email protected]> Date: Sun Aug 5 21:00:49 2012 -0500 Fix a typo in perlootut ----------------------------------------------------------------------- Summary of changes: pod/perlootut.pod | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perlootut.pod b/pod/perlootut.pod index b2e3500..112d2ee 100644 --- a/pod/perlootut.pod +++ b/pod/perlootut.pod @@ -218,8 +218,8 @@ Polymorphism is one of the key concepts of object-oriented design. =head2 Inheritance B<Inheritance> lets you create a specialized version of an existing -class. Inheritance lets the new class to reuse the methods and -attributes of another class. +class. Inheritance lets the new class reuse the methods and attributes of +another class. For example, we could create an C<File::MP3> class which B<inherits> from C<File>. An C<File::MP3> B<is-a> I<more specific> type of C<File>. -- Perl5 Master Repository
