This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ae2764
)
Fix syntax: useless use of constant in void context
author
Alan Haggai Alavi
<alanhaggai@alanhaggai.org>
Sun, 3 Feb 2013 04:47:06 +0000
(10:17 +0530)
committer
Aaron Crane
<arc@cpan.org>
Sun, 3 Feb 2013 09:45:39 +0000
(09:45 +0000)
pod/perlsec.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlsec.pod
b/pod/perlsec.pod
index
634024d
..
7b3f99d
100644
(file)
--- a/
pod/perlsec.pod
+++ b/
pod/perlsec.pod
@@
-93,7
+93,7
@@
The keys of a hash are B<never> tainted.
For example:
$arg = shift; # $arg is tainted
- $hid = $arg
, 'bar';
# $hid is also tainted
+ $hid = $arg
. 'bar';
# $hid is also tainted
$line = <>; # Tainted
$line = <STDIN>; # Also tainted
open FOO, "/home/me/bar" or die $!;