From 4dfd4e1d00c8492466e9f90f777819d3339bea60 Mon Sep 17 00:00:00 2001 From: Sampat Badhe Date: Sun, 9 Jun 2024 10:21:54 +0530 Subject: [PATCH] Correct typo [ci skip] --- doc/exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/exceptions.md b/doc/exceptions.md index 618ebbb095..4db2f26c18 100644 --- a/doc/exceptions.md +++ b/doc/exceptions.md @@ -43,7 +43,7 @@ begin raise 'Boom!' # Raises an exception, transfers control. puts 'Will not get here.' rescue - puts 'Rescued an exception.' # Control tranferred to here; program does not exit. + puts 'Rescued an exception.' # Control transferred to here; program does not exit. end puts 'Got here.' ``` -- 2.11.4.GIT