aboutsummaryrefslogtreecommitdiffstats
path: root/vm_eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm_eval.c b/vm_eval.c
index c2fca2c844..686b7e030c 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1938,10 +1938,10 @@ catch_i(VALUE tag, VALUE data)
*
* catch(1) { 123 } # => 123
*
- * If +throw(tag2, val)+ is called, Ruby searches up its stack for a +catch+
- * block whose +tag+ has the same +object_id+ as _tag2_. When found, the block
- * stops executing and returns _val_ (or +nil+ if no second argument was given
- * to +throw+).
+ * If <code>throw(tag2, val)</code> is called, Ruby searches up its stack for
+ * a +catch+ block whose +tag+ has the same +object_id+ as _tag2_. When found,
+ * the block stops executing and returns _val_ (or +nil+ if no second argument
+ * was given to +throw+).
*
* catch(1) { throw(1, 456) } # => 456
* catch(1) { throw(1) } # => nil