Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Jun 7, 2018
1 parent 4db7f6c commit 209c89c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Object/Method.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ our $VERSION = '0.03';
sub import {
no strict;
if (@_ > 0) {
*{caller() . "::method"} = \&method;
*{caller() . '::method'} = \&method;
}
}

Expand All @@ -29,7 +29,7 @@ sub method {
bless $o, $p;
{
no strict;
@{$p . "::ISA"}=($op);
@{$p . '::ISA'}=($op);
}
}

Expand Down

0 comments on commit 209c89c

Please sign in to comment.