Skip to content

Commit

Permalink
Fixed typo in proxy AUTOLOAD (Jean-Pierre Rupp).
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Feb 1, 2012
1 parent 46dbab7 commit ccb67a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,6 @@ E: [email protected]

N: Ruud H. G. van Tol
E: [email protected]

N: Jean-Pierre Rupp
E: [email protected]
2 changes: 1 addition & 1 deletion sections/autoload.pod
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ them:
Log::method_call( $name, @_ );

my $self = shift;
return $self->$name( @_ );
return $$self->$name( @_ );
}

B<no strict 'refs';>
Expand Down

0 comments on commit ccb67a6

Please sign in to comment.