diff --git a/lib/perl5i/2/Meta/Class.pm b/lib/perl5i/2/Meta/Class.pm index ee99ce7..a4ef3d2 100644 --- a/lib/perl5i/2/Meta/Class.pm +++ b/lib/perl5i/2/Meta/Class.pm @@ -1,5 +1,7 @@ package perl5i::2::Meta::Class; +# Methods here are for $thing->mc->method. + use strict; use warnings; diff --git a/lib/perl5i/2/Meta/Instance.pm b/lib/perl5i/2/Meta/Instance.pm index 2e2c7cb..bc1b997 100644 --- a/lib/perl5i/2/Meta/Instance.pm +++ b/lib/perl5i/2/Meta/Instance.pm @@ -1,5 +1,7 @@ package perl5i::2::Meta::Instance; +# Methods here are for $thing->mo->method. + use 5.010_000; use strict; use warnings; diff --git a/lib/perl5i/2/UNIVERSAL.pm b/lib/perl5i/2/UNIVERSAL.pm index f1151c8..3de0995 100644 --- a/lib/perl5i/2/UNIVERSAL.pm +++ b/lib/perl5i/2/UNIVERSAL.pm @@ -1,6 +1,8 @@ package perl5i::2::UNIVERSAL; -# Methods which apply to all autoboxed objects +# Methods which apply to all autoboxed objects. +# +# They do NOT apply to blessed objects. That should go into perl5i::2::Meta::Instance. use strict; use warnings;