summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorKaren Etheridge <ether@cpan.org>2021-08-06 22:29:07 -0700
committerKaren Etheridge <ether@cpan.org>2021-08-06 22:29:19 -0700
commit2be3206b6b8065ad2cdcec219fb3835b1af625f2 (patch)
tree50761dd3593a881c2c2e36e9f296ef3b9a4daac3 /pod/perlsyn.pod
parentf77b2d0e2503b5ff6743b62d7cd34ef9887cd6b1 (diff)
downloadperl-2be3206b6b8065ad2cdcec219fb3835b1af625f2.tar.gz
fix typo in pod
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r--pod/perlsyn.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod
index e3bf614f7c..2957b0faf5 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -571,7 +571,7 @@ Examples:
use feature "refaliasing";
no warnings "experimental::refaliasing";
foreach \my %hash (@array_of_hash_references) {
- # do something which each %hash
+ # do something with each %hash
}
Here's how a C programmer might code up a particular algorithm in Perl: