From: Brandon L Black Date: Mon, 19 May 2008 22:26:00 +0000 (+0000) Subject: doc nits X-Git-Tag: 0.07~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMRO-Compat.git;a=commitdiff_plain;h=602f6319e2d914d7d3dcbfb4a4f9f90140c5e868 doc nits --- diff --git a/README b/README index 7ebb099..460fef5 100644 --- a/README +++ b/README @@ -44,11 +44,11 @@ DESCRIPTION Functions mro::get_linear_isa($classname[, $type]) - Returns an arrayref which is the linearized MRO of the given class. Uses - whichever MRO is currently in effect for that class by default, or the - given MRO (either "c3" or "dfs" if specified as $type). + Returns an arrayref which is the linearized "ISA" of the given class. + Uses whichever MRO is currently in effect for that class by default, or + the given MRO (either "c3" or "dfs" if specified as $type). - The linearized MRO of a class is a single ordered list of all of the + The linearized ISA of a class is a single ordered list of all of the classes that would be visited in the process of resolving a method on the given class, starting with itself. It does not include any duplicate entries. @@ -131,7 +131,7 @@ AUTHOR Brandon L. Black, COPYRIGHT AND LICENSE - Copyright 2007 Brandon L. Black + Copyright 2007-2008 Brandon L. Black This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/lib/MRO/Compat.pm b/lib/MRO/Compat.pm index 8c7e224..004b216 100644 --- a/lib/MRO/Compat.pm +++ b/lib/MRO/Compat.pm @@ -5,7 +5,7 @@ require 5.006_000; # Keep this < 1.00, so people can tell the fake # mro.pm from the real one -our $VERSION = '0.05'; +our $VERSION = '0.06_01'; BEGIN { # Alias our private functions over to @@ -97,11 +97,11 @@ interface docs, and contain a lot of other useful information. =head2 mro::get_linear_isa($classname[, $type]) -Returns an arrayref which is the linearized MRO of the given class. +Returns an arrayref which is the linearized "ISA" of the given class. Uses whichever MRO is currently in effect for that class by default, or the given MRO (either C or C if specified as C<$type>). -The linearized MRO of a class is a single ordered list of all of the +The linearized ISA of a class is a single ordered list of all of the classes that would be visited in the process of resolving a method on the given class, starting with itself. It does not include any duplicate entries. @@ -396,7 +396,7 @@ Brandon L. Black, Eblblack@gmail.comE =head1 COPYRIGHT AND LICENSE -Copyright 2007 Brandon L. Black Eblblack@gmail.comE +Copyright 2007-2008 Brandon L. Black Eblblack@gmail.comE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.