summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorRichard Leach <richardleach@users.noreply.github.com>2021-02-01 17:20:53 +0000
committerKarl Williamson <khw@cpan.org>2021-02-01 09:23:56 -0800
commit215723e7f11e27ff22a9b44692f875694989c39f (patch)
tree7411370faaf5fbbac3d1cf68652a744da51d78d4 /pod/perlsyn.pod
parent8c5e15d0d75a75ec52cba21d188852c305c161fc (diff)
downloadperl-215723e7f11e27ff22a9b44692f875694989c39f.tar.gz
perlsyn.pod - Minor rewording for while/until
Originally missing the word "at", but rather than just adding it, this wording seemed nicer.
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 a96331fe2e..fa4b78a278 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -315,7 +315,7 @@ by a colon. The LABEL identifies the loop for the loop control
statements C<next>, C<last>, and C<redo>.
If the LABEL is omitted, the loop control statement
refers to the innermost enclosing loop. This may include dynamically
-looking back your call-stack at run time to find the LABEL. Such
+searching through your call-stack at run time to find the LABEL. Such
desperate behavior triggers a warning if you use the C<use warnings>
pragma or the B<-w> flag.