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:
parent
f64457180a
commit
35ab341cf2
1 changed files with 2 additions and 2 deletions
4
vm.c
4
vm.c
|
@ -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
|
rb_iseq_t *iseq; // cfp[2], iseq
|
||||||
VALUE self; // cfp[3], self
|
VALUE self; // cfp[3], self
|
||||||
const VALUE *ep; // cfp[4], env pointer
|
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 self;
|
||||||
VALUE *ep;
|
VALUE *ep;
|
||||||
union code;
|
union code;
|
||||||
|
|
Loading…
Reference in a new issue