From f0282c8ce0932a5dfb248cb320a341492a14bf91 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Fri, 21 Jun 2024 15:39:08 -0700 Subject: [PATCH] Fix typo in explainer (#312) --- proposals/exception-handling/Exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/exception-handling/Exceptions.md b/proposals/exception-handling/Exceptions.md index 37cb994c..d982592c 100644 --- a/proposals/exception-handling/Exceptions.md +++ b/proposals/exception-handling/Exceptions.md @@ -123,7 +123,7 @@ catch_ref tag label catch_all label catch_all_ref label ``` -All forms have a label which is branched to when an exception is cought (see +All forms have a label which is branched to when an exception is caught (see below). The former two forms have an exception tag associated with it that identifies what exceptions it will catch. The latter two forms catch any exception, so that they can be used to define a _default_ handler.