1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typo: blcok -> block

Typo in a comment about "evaluator body".

[Fix GH-1824]

From: hkdnet <satoko.itse@gmail.com>

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-02-24 01:02:58 +00:00
parent f64457180a
commit 35ab341cf2

4
vm.c
View file

@ -1729,10 +1729,10 @@ hook_before_rewind(rb_execution_context_t *ec, const rb_control_frame_t *cfp, in
rb_iseq_t *iseq; // cfp[2], iseq
VALUE self; // cfp[3], self
const VALUE *ep; // cfp[4], env pointer
const void *block_code; // cfp[5], blcok code
const void *block_code; // cfp[5], block code
};
struct rb_captured_blcok {
struct rb_captured_block {
VALUE self;
VALUE *ep;
union code;