From bbd5d3348b519035a5d2cdf777e7c8d5c143055c Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Thu, 24 Apr 2025 20:13:12 +0900 Subject: [PATCH] Fix tiny typo in syntax/exceptions.rdoc --- doc/syntax/exceptions.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syntax/exceptions.rdoc b/doc/syntax/exceptions.rdoc index ac5ff78a95..cdf9d367a7 100644 --- a/doc/syntax/exceptions.rdoc +++ b/doc/syntax/exceptions.rdoc @@ -103,4 +103,4 @@ You may also run some code when an exception is not raised: # It will not return implicitly. end -NB : Without explicit +return+ in the +ensure+ block, +begin+/+end+ block will return the last evaluated statement before entering in the `ensure` block. +NB : Without explicit +return+ in the +ensure+ block, +begin+/+end+ block will return the last evaluated statement before entering in the +ensure+ block.