aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorMarcus Stollsteimer <sto.mar@web.de>2021-01-05 15:13:53 +0100
committerMarcus Stollsteimer <sto.mar@web.de>2021-01-05 15:13:53 +0100
commit3108ad7bf3dcae52054a1c29b86246cdb470000b (patch)
tree48879bbd126fe3c3ee37f714130abe7c4a2de49a /eval.c
parent3d439447250f19333418adcdf777142dda4b3364 (diff)
downloadruby-3108ad7bf3dcae52054a1c29b86246cdb470000b.tar.gz
[DOC] Fix grammar: "is same as" -> "is the same as"
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 55ac8b4eac..be6a6b4dfd 100644
--- a/eval.c
+++ b/eval.c
@@ -1062,7 +1062,7 @@ rb_vrescue2(VALUE (* b_proc) (VALUE), VALUE data1,
*
* Equivalent to <code>begin .. rescue .. end</code>.
*
- * It is same as
+ * It is the same as
* \code{cpp}
* rb_rescue2(b_proc, data1, r_proc, data2, rb_eStandardError, (VALUE)0);
* \endcode