summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-11 07:48:46 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-11 07:48:46 +0000
commit6d9d0573815dfef636f241310976fb6ba3c5d267 (patch)
tree2d5dcf99d56436759d1673fc17f1e4a60423dc75
parentcd7f9af76f0d337e0b6ef5b49db2576247d0d50f (diff)
downloadperl-6d9d0573815dfef636f241310976fb6ba3c5d267.tar.gz
Less indirect object notation
p4raw-id: //depot/perl@31585
-rw-r--r--pod/perlfunc.pod2
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.