From: Rafael Garcia-Suarez Date: Wed, 11 Jul 2007 07:48:46 +0000 (+0000) Subject: Less indirect object notation X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d9d0573815dfef636f241310976fb6ba3c5d267;p=p5sagit%2Fp5-mst-13.2.git Less indirect object notation p4raw-id: //depot/perl@31585 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index c3df291..c96596f 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -6814,7 +6814,7 @@ Imports some semantics into the current package from the named module, generally by aliasing certain subroutine or variable names into your package. It is exactly equivalent to - BEGIN { require Module; import Module LIST; } + BEGIN { require Module; Module->import( LIST ); } except that Module I be a bareword.