Correct typo [ci skip]

This commit is contained in:
Sampat Badhe 2024-06-09 10:21:54 +05:30 committed by Nobuyoshi Nakada
parent 1b7aabb90d
commit 4dfd4e1d00

View File

@ -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.'
```