From 6d9d0573815dfef636f241310976fb6ba3c5d267 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Wed, 11 Jul 2007 07:48:46 +0000 Subject: [PATCH] Less indirect object notation p4raw-id: //depot/perl@31585 --- pod/perlfunc.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.7.4