summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2021-02-20 13:02:34 +0000
committerPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2021-02-20 13:02:34 +0000
commitc2daba311fa72a806caf9e6aea0531115d174412 (patch)
treefea5b69cbb7a831cf840fbe0bd17be8dcc482307 /pod/perlsyn.pod
parentbc9a5de2cbd0b7751c2d9f89e3c1dae4474d7e00 (diff)
downloadperl-c2daba311fa72a806caf9e6aea0531115d174412.tar.gz
Use the wording 'subroutine signatures' more consistently in perlsyn.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 8e3045656b..f6067037dc 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -641,7 +641,7 @@ parentheses, which introduces a new variable visible to the body of the
subsequent block. Inside the block this variable will contain the exception
value that was thrown by the code in the C<try> block. It is not necessary
to use the C<my> keyword to declare this variable; this is implied (similar
-as it is for function signatures).
+as it is for subroutine signatures).
Both the C<try> and the C<catch> blocks are permitted to contain control-flow
expressions, such as C<return>, C<goto>, or C<next>/C<last>/C<redo>. In all