diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-07-11 07:48:46 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-07-11 07:48:46 +0000 |
commit | 6d9d0573815dfef636f241310976fb6ba3c5d267 (patch) | |
tree | 2d5dcf99d56436759d1673fc17f1e4a60423dc75 | |
parent | cd7f9af76f0d337e0b6ef5b49db2576247d0d50f (diff) | |
download | perl-6d9d0573815dfef636f241310976fb6ba3c5d267.tar.gz |
Less indirect object notation
p4raw-id: //depot/perl@31585
-rw-r--r-- | pod/perlfunc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index c3df291fc2..c96596fcd6 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<must> be a bareword. |