Fix typo in MRO::print_superclasses

This commit is contained in:
Oliver Gorwits
2015-02-28 21:13:38 +00:00
parent 73d713b670
commit 8dfe9ef1cf
2 changed files with 6 additions and 2 deletions

View File

@@ -363,7 +363,7 @@ Pretty print the output of C<superclasses()>.
=cut
sub print_superclasses {
print join ("\n", (shift)->superclasses), "\n";
print join ("\n", superclasses(@_)), "\n";
}
=back