Safe.pm documentation
Slaven Rezic [Sat, 10 Aug 2002 19:30:38 +0000 (21:30 +0200)]
Message-id: <200208101730.g7AHUc9p001668@vran.herceg.de>

p4raw-id: //depot/perl@17729

ext/Opcode/Safe.pm

index 22ba03f..b041ef7 100644 (file)
@@ -383,8 +383,9 @@ This shares the variable(s) in the argument list with the compartment.
 This is almost identical to exporting variables using the L<Exporter>
 module.
 
-Each NAME must be the B<name> of a variable, typically with the leading
-type identifier included. A bareword is treated as a function name.
+Each NAME must be the B<name> of a non-lexical variable, typically
+with the leading type identifier included. A bareword is treated as a
+function name.
 
 Examples of legal names are '$foo' for a scalar, '@foo' for an
 array, '%foo' for a hash, '&foo' or 'foo' for a subroutine and '*foo'