summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2021-02-06 22:42:35 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-02-06 22:42:35 +0000
commit874732f8cc911285f758070d901aa27e39918084 (patch)
tree1bdcff8b20410e38d0f51948246a51ceba484b12 /pod/perlsyn.pod
parent9b2803fee032f0a952408878751162d1b5c3f369 (diff)
downloadperl-874732f8cc911285f758070d901aa27e39918084.tar.gz
Grammar: predicate should "agree by number" with subject
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 0ce267bfdb..61908770b3 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -630,7 +630,7 @@ that may be thrown by the first.
Here, the body of the C<catch> block (i.e. the C<warn> statement) will be
executed if the initial block invokes the conditional C<die>, or if either of
-the functions it invokes throw an uncaught exception. The C<catch> block can
+the functions it invokes throws an uncaught exception. The C<catch> block can
inspect the C<$e> lexical variable in this case to see what the exception was.
If no exception was thrown then the C<catch> block does not happen. In either
case, execution will then continue from the following statement - in this